-1
我對VBA Access &完全陌生。我需要將excel文件數據導入訪問表。 我正在嘗試使用下面的代碼。將Excel文件數據導入Access數據庫VBA
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "TableName", importFilePath, True
在我的輸入文件中有一些格式,我需要從第8行獲取數據。
所以,我被困在這一點。如何從第8列讀取數據。 我也指定了範圍,但然後它產生了錯誤。 任何人都可以幫忙嗎?
可能重複[通過VBA將MS Access表導出到同一目錄中的Excel電子表格](http://stackoverflow.com/questions/1849580/export-ms-access-tables-through-vba-to-an-excel-spreadsheet-in -same-directory) – 2013-10-21 08:40:15
你想要第8列還是第8列的數據? – HansUp