I need to have a user select a file for further operations using a normal dialog. I tried this code, but nothing happens, not even an error.
Dim FileName As String
Dim FD As FileDialog
Set FD = Application.FileDialog(msoFileDialogFilePicker)
FileName = FD.InitialFileName
I have the Microsoft...