I am trying to do the following using c# code:
- Hide some rows in excel.
- Clear all data and formats in excel sheet.
- Put other data to excel sheet.
I would like the hidden rows still remain hidden. Is it possible?
Thank You!
|
|
Here's a sample code that can get you going....
Thats it.... |
|||
|
|
|
I've had great results using ClosedXML to manipulate excel spreadsheets. While I haven't tried your case I've done similar things. In my case I put my private data into a new worksheet and hide that, which ClodedXML made simple. |
|||
|
|
|
Store them in a variable and hide them again after you have populated excel with data. |
|||
|