I've successfully used, as an example, the following:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, _
"MyTable","C:\MyFile.xls", True, "A1:B2"
However what I really need is to be able to prompt the user to find the file rather than specifying it in the code.
Really what I'm...