Hello,
Im trying to make a query that will copy data from one record to another already created record. As you can see in the picture I have all the records pre filled out with the tag numbers so they can pick them from a drop down list.
The user will select Update Tag Number, Then select the Curent tag number they want to change, then they will select the new tag number they want it to be. In this case we are changing tag number 1204 to tag number 1206. Now i need a query that will take the Info highlighted in red from the 1204 record and copy or move it down to the 1206 record once the save and exit button is clicked.
This is the current Query im using but its not working and im not sure what else i can do. If there is another way to do this that might be easier im open for suggestions also.
Thanks
Code:
UPDATE USTagT SET USTagT.TemmisNum = [Forms]![USTagInOutF]![TemmisNum], USTagT.Description = [Forms]![USTagInOutF]![Description], USTagT.NSN = [Forms]![USTagInOutF]![NSN], USTagT.PartNum = [Forms]![USTagInOutF]![PartNum], USTagT.SerialNum = [Forms]![USTagInOutF]![SerialNum], USTagT.Location = [Forms]![USTagInOutF]![Location], USTagT.Notes = [Forms]![USTagInOutF]![Notes]+[Forms]![USTagInOutF]![Combo120], USTagT.SignedOut = Yes, USTagT.USTagNum = [Forms]![USTagInOutF]![Combo231]
WHERE (((USTagT.USTagNum)=[Forms]![USTagInOutF]![Combo231]));
Thanks for the help