Hello... Here's a simple function I use in a lot of different programs. I normally just paste it into each module but it occurs to me there should be a way to paste it a single time and make it available to all the modules.
Code:
'Get Folder
Function Get_Folder()
Dim Folder_x As String
Folder_x = Application.GetOpenFilename()
Do While Right(Folder_x, 1) <> "\"
Folder_x = Left(Folder_x, Len(Folder_x) - 1)
Loop
Get_Folder = Folder_x
End Function