Thanks Guys,<br><br>It works using the query. But I have to use VBA code only.<br>But I figured it out.<br><br>Here's the code for future references:<br><br>'This module selects all records in the Excel Import File table and copies them into the<br>'form elements table.<br><br>Sub SelectIntoX()<br><br> Dim db As Database<br> Dim qdf As QueryDef<br><br> Set db = CurrentDb<br> <br>'Selects all records in the Import table and adds F6 & F7 from the excel file called "spreadsheet" and copies the fields into a new table, "FormElemen_Backup".<br> <br>db.Execute "SELECT Spreadsheet.F1, Spreadsheet.F2, Spreadsheet.F3, Spreadsheet.F4,spreadsheet.F5, [F6] & [F7] AS ChargeCode INTO " _<br>& "[Formelem_back] FROM Spreadsheet;"<br> <br> ' Delete the old table<br> 'db.Execute "DROP TABLE [spreadsheet];"<br> <br>db.Close<br><br>End Sub<br><br><br>Sherree