A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Alright, well, with no further suggestions forthcoming, I've resorted to taking a different approach, using the application dialog filepicker. I'll post that against the off chance someone else might experience the same thing. Many thanks to OssieMac and Chip for pitching in.
Sub test()
Dim wb As Workbook
With Application.FileDialog(msoFileDialogFilePicker)
.Filters.Add "Excel Files", "*.xls"
.AllowMultiSelect = False
.Show
If .SelectedItems.Count = 0 Then
Exit Sub
End If
Set wb = Workbooks.Open(.SelectedItems(1))
End With
End Sub