Forum Discussion
sunilbsrv2k
Mar 28, 2024Copper Contributor
Append Excel data into MS Access though macro
Hi All, I have a task to automate the process of appending the table in MS Access with the data in an Excel file. I have created the Excel file, imported the data in Access. But the task ...
peiyezhu
Mar 29, 2024Bronze Contributor
SQL = "SELECT * INTO " & AccessTable & " FROM [Excel 12.0;Database=" & ExcelFile & "].["
& ExcelTable & "]"
Conn.Execute SQL
& ExcelTable & "]"
Conn.Execute SQL
- sunilbsrv2kApr 01, 2024Copper ContributorThank You; Let me try this and update you.