I'm trying to find an easy way to automatically import multiple data ranges into my database without copy and paste into a new excel tab with the data I need. I'm currently using DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "Table_Name", filename, True, "Tab!A1:C20" which is fine to import a full range. What I need is data from say, Tab!A1:A20, Tab!C1:C20, Tab!F1:F:20. Is this possible?
TIA
TIA