when you copy a sheet, if there is bold text in the original sheet, the text will be copied without the bold
1. create a new excel file with Excel 2007 and stay on sheet1
2. enter some text
3. make that text bold
4. Save
5. Close Excel
run this code on it
```
using exfile as new excelpackage(new fileinfo("excel file from step 1")
exfile.workbook.worksheets.copy("sheet1","copiedSheet")
exfile.save()
end using
```
the new sheet wont have the bold text
1. create a new excel file with Excel 2007 and stay on sheet1
2. enter some text
3. make that text bold
4. Save
5. Close Excel
run this code on it
```
using exfile as new excelpackage(new fileinfo("excel file from step 1")
exfile.workbook.worksheets.copy("sheet1","copiedSheet")
exfile.save()
end using
```
the new sheet wont have the bold text