Extract Just Path Location from File Picker vba Access
vba
Using
' To extract only the filename from the path, you can do the following: varFilename = Mid(fDialog.SelectedItems(1), InStrRev(fDialog.SelectedItems(1), "\") + 1, Len(fDialog.SelectedItems(1)))
varPath = Left(fDialog.SelectedItems