This code by Jacob Mathai found in the code repository and pasted below, seems not to work. The first line does something good. The table opens in Access. The second line opens the Tools menu item in the VBE, and the third line opens the References menu item under Tools.
Is there a way to edit an Access table directly in Excel? It would be great. Any educational comments about this issue?
Code:
To open a table in EXCEL, I use this code
DoCmd.OpenTable "tblxxxxx"
SendKeys "%(TLA)", False ' tools/office links/analyze with Microsoft Excel
SendKeys "Yes", False ' to avoid the confirmation message
Is there a way to edit an Access table directly in Excel? It would be great. Any educational comments about this issue?