|
|
Question : Access VBA - Import Spreadsheet
|
|
Hi, Can someone tell me how to simply insert a spreadsheet into an access table using VBA. I am using the code attached but it wants a specific column avilable for each row in the spreadsheet. My spreadsheet simply has one row ( at the moment ) with a series of numbers in it. But when I import to my access table it gives me an error cant find column F1 in table. Why F1? If I change my column to F1 it works. Is there anyway to insert the data in column 1 of the spreadsheet into column 1 of my table and so on.
Dim strTargetTable As String strTargetTable = "tbl_test" DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, strTargetTable, Me.txtFilePath.Value, False
Thanks
|
Answer : Access VBA - Import Spreadsheet
|
|
andyb7901 said: >>I have named a column in excel. Grid A1 is named spn_id and so is my database table field
Then why did you indicate false for the argument setting whether your Excel data has a column header?
|
|
|
|
|