What’s the best tool to import an excel spreadsheet in C# these days? I’m currently using Interop.Excel.dll.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the Jet OLEDB Provider:
Where
"HDR=Yes"means that there is a header row in the cell range(or named range), so the provider will not include the first row of the
selection into the recordset.
Ref: how to use ADO to read and write data in Excel workbooks
See also: