Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
更新保存在 excel 文件中的记录的最佳方法是什么。例如,我有一个 MS Access 数据库,其中有一个表,其中包含Product ID、ProductName和ProductAge.
Product ID
ProductName
ProductAge
我将同一张表存储在 Excel 电子表格中。我想编写一个 VBA 代码来查看该 excel 电子表格并更新我的数据库表。
您可以从数据库中删除记录,然后使用以下代码再次导入电子表格数据。(假设它是同一张表)
Docmd.RunSql("delete from tblData") DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel8, "tblData","C:\Data\Test.xls", True, "A1:E100"