How can I select specific columns from excel sheet rather than all columns
string connectionString = String.Format(@\"Provider=Microsoft.ACE.OLEDB.12.0;Data
What about:
SELECT * FROM [Sheet1$B14:C20]
This should select cells B14 to C20.
B14
C20