I need help with writing some kind of Append query. I do not know much about SQL and I can not seem to find any examples on what I'm trying to do.
This will probably be simple for most of you.
I have 2 tables. The first table is called tblTempList which is where I am importing a list of VINs into from an Excel sheet. The colum name is F1. The second table called tblVINList is a many relationship table. It has 2 colums. The first is called WorkOrderID and the second is VINList.
I have a subform called sfrmVIN with a subform on it called ssfrmVINList.
The form ssfrmVINList shows the list from the table tblVINList using the WorOrderID as its reference.
I need a method of getting the list from table tblTempList, colum F1, to table tblVINList colum VINList along with the subforms WorkOrderID number in the WorkOrderID colum of the table.
Example of tblVINList after transfer:
WorkOrderID | VINList
344 | C06P025655
344 | C06P025865
344 | C06P026157
344 | C06P026420
344 | C06P035832
This needs to be done from a Buttons click event procedure. Any help on this would be very appreciated.
This will probably be simple for most of you.
I have 2 tables. The first table is called tblTempList which is where I am importing a list of VINs into from an Excel sheet. The colum name is F1. The second table called tblVINList is a many relationship table. It has 2 colums. The first is called WorkOrderID and the second is VINList.
I have a subform called sfrmVIN with a subform on it called ssfrmVINList.
The form ssfrmVINList shows the list from the table tblVINList using the WorOrderID as its reference.
I need a method of getting the list from table tblTempList, colum F1, to table tblVINList colum VINList along with the subforms WorkOrderID number in the WorkOrderID colum of the table.
Example of tblVINList after transfer:
WorkOrderID | VINList
344 | C06P025655
344 | C06P025865
344 | C06P026157
344 | C06P026420
344 | C06P035832
This needs to be done from a Buttons click event procedure. Any help on this would be very appreciated.