-1
What is the best way to work with Excel, XLS and XLSX spreadsheets in C#?
I need to perform cell readings according to the column name, which is specified in the first row.
Follow an example below:
Observing: Inside the XLS or XLSX file will have only one Worksheet
The Library I use to manipulate and create spreadsheets is the Epplus, with it you can manipulate virtually everything, that tutorial teaches you to read a spreadsheet.
– Laerte
In the current form your question is not good for the standards of website. [Ask] See: [help/dont-Ask]. I’m not saying that the question is all bad. They’ve asked something like this and it hasn’t produced very good things. http://answall.com/questions/23080/trabalhando-com-dados-do-excel-no-c
– Maniero
Thank you @Laerte for your editing activity.
– TonCunha
@Toncunha, you can also use NPOI, in that link have an example with XLS files, for XLSX files just import
XSSF
instead ofHSSF
– mateusalxd