I have this code below...
Sub GetFilePath()
Set myFile = Application.FileDialog(msoFileDialogOpen)
With myFile
.Title = "Choose File"
.AllowMultiSelect = True
If .Show <> -1 Then
Exit Sub
End If
FileSelected = .SelectedItems(1)
End With
Range("A" & Rows.Count).End(xlUp).Offset(1) =...