...try.
Public Function ImportXL() As Boolean
'thedbguy@gmail.com
'10/9/2020
Dim fd As Object
Dim strFile As String
Set fd = Application.FileDialog(3)
With fd
.AllowMultiSelect = False
.Filters.Clear
.Filters.Add "Excel Files", "*.xls*"
If .Show Then
strFile =...