我正在尝试在 Microsoft Access 中编写一个 VBA 脚本,该脚本将与 Excel 工作表交互,遍历行,然后遍历行中的单元格,然后将信息拉回 Access 表中。
这是一些 sudo 代码-
For Each Row
For Each Cell in the Row
Read the Cell
Create a new Record in the Access table with the info from the cell
End For Each
End For Each
您可以在下面的图片中看到最终结果的简化示例。
我们有什么-
需要什么——
我以前编码过,但从未在 VBA 中编码过;所以任何帮助将不胜感激!谢谢你的帮助!!!