views:

309

answers:

1

I want to get the folder path from the file who is running the vba-code. For example: the vba-code is in the file C:\myfolded\file.accdb and I want the vba-code to return C:\myfolded\

Is that possible?

+2  A: 

You need

currentproject.Path
Remou