Is it possible to preset all the steps in import from excel buttom in access in vba? Or well, not all the steps the user should only need to find the excel file on the computor?
ive tried the follow syntax
however, the excelfile alwas change name so i want the user to be able to search (and fill out) that part
ive tried the follow syntax
Code:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel8, "Sheet1", [U]"C:\test.xls"[/U], True
Comment