Hi,<br><br>I'll greatly appreciate any help or suggestions on the following questions:<br>How do I import multiple excel worksheets <br>into an Access table use VBA code only?<br>I've tried this code:<br>DoCmd.TransferSpreadsheet acImport, 8, "spreadsheet", "w:abc.xls", True<br>but only imports one worksheet at a time, please help!<br><br>I want the user to enter the excel file name <br>using this format:<br>'****** SETS THE USER PROMPT **************<br>'Dim Message, Default, MyValue As String<br>'Dim Title<br>'Message = "Enter the Excel File name including driveath" 'Set Prompt<br>'Default = ""<br>'MyValue = InputBox(Message, Title, Default)<br>'*******************************************<br>But if I use the TransferSpreadsheet Method<br>the file name is a required argument, help!