All; using 2010; I have a database in which I import 4 excel spreadsheets into temp tables.  I want to append the data in temp tables to existing tables.
I want user to be able to do the importing and appending from a form with a command button. I put code similar to this in a function along with code to import the excel spreadsheet (Transferspreadsheet...):
	
	
	
		
Like i said; I have 4 tables. Is there a more proficient use of VBA that I can use or am I on the right track. How would you do this?
Thanks
 I want user to be able to do the importing and appending from a form with a command button. I put code similar to this in a function along with code to import the excel spreadsheet (Transferspreadsheet...):
		Code:
	
	
	Dim srtQry1 As String, srtQry2 As String
strQry1 = "INSERT INTO Order_Line (OrderNo, ProductID, Qty, Price) " & _
              "SELECT OrderNo, ProductID, Qty, Price " & _
              "FROM Import_Order_Lines;"
strQry2 = "INSERT INTO Order (OrderNo, OrderDate, CurstomerName, CustomerDeliveryAddress, CustomerSuburb, CustomerState, CustomerPostCode) " & _
              "SELECT OrderNo, OrderDate, CurstomerName, CustomerDeliveryAddress, CustomerSuburb, CustomerState, CustomerPostCode " & _
              "FROM Import_Order_Lines;"
DoCmd.RunSQL strQry1
DoCmd.RunSQL strQry2Like i said; I have 4 tables. Is there a more proficient use of VBA that I can use or am I on the right track. How would you do this?
Thanks
 
	 
 
		 
 
		