I need the path name and file name of the file that is opened with File Dialog (VBA macro in excel). I want to show this information with a hyperlink in my excelsheet. Can anyone help me?
Thanks in advance
edit:
This is what I just found:
Sub GetFilePath()
Set myFile = Application.FileDialog(msoFileDialogOpen)
With myFile
.Title = "Choose File"
.AllowMultiSelect = False
If .Show <> -1 Then
Exit Sub
End If
FileSelected = .SelectedItems(1)
End With
ActiveSheet.Range("A1") = FileSelected
End Sub
With this code I have the file path. Now i'm still looking for a way to get the filename.
Tx
