Hello there.
First of all I must say that I am a newbie when it comes to OpenXML.
Here is my problem.
I can not convert xls file in csv file format.
If you have link for similar task, please give it me.
Can you explain any one or any sample code related this.
Your help would be very appreciated.
Thanks in advance for your time and hints.
Cheers.
Basically just open your spreadsheetdocument, get the first worksheetpart from the workbook. Then loop through each sheetdata.row and on each row, loop through each cell. Grab the value and add to a stringbuilder object. At the end of each row, save the stringbuilder value to a text file. Done.
James