Excel Select Single Columns
My problem is that I want to select specific columns of an excel spreadsheet that are not connected (-> no CellRange possible). I'm connecting to the spreadsheet using ODBC with a SQL-Statemanet like "SELECT * FROM [Sheet1$]"
This selects al the data in the spreadsheet. BUT I only need the columns A, B, X and Y (for example). So selecting al the other columns too slows down the speed considerably...
I found out how to select a CellRange: "SELECT * FROM [Sheet1$A1:B100]" ...
Please Help!!

