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.
我以前从未在 VBA 中为 excel 做过任何事情。当 .accdb 在 C 驱动器中时,我的整个仪表板都在工作,但现在我希望它与 excel 工作簿位于同一文件夹中。
我得到以下底线的“运行时错误'424:需要对象”
Dim DatabasePath As String DatabasePath = CurrentProject.Path & "\SpreadSheetData.accdb"
为什么是这样?谢谢你的帮助
Excel中没有CurrentProject。如果要引用执行代码所在的工作簿,请ThisWorkbook改用。
CurrentProject
ThisWorkbook