Hi, I need to read a XML Spread Sheet 2003 in a project and I have a problem with columns.
This example show you have king of template my data are :
Name Of | FirstName | SecondName | ... | ... Monday | 1 | 2 | 3 | 2 Tuesday | 0 | 1 | 1 | ? Wednesday | 2 | ? | ? | ?
I need to extract every data in each columns and the problem is here : C# read this XML Spread Sheet row by row only and with this example I don't know how I can have exactly every data for each column. Moreover I can't know in advance the data.
Here is the beginning of my code
var queryPeriodSheet = from worksheet in data.Descendants(ss + "Worksheet")
where worksheet.Attribute(ss + "Name").Value == "sheet1"
select worksheet;
var rows = from row in queryPeriodSheet.Descendants(ss + "Row")
select row;
...
I need your help,
Thank you