Here is my query first off
What I want to do is update the delivery_Charge column for the individual job ID with the total amount from the TrussPrice column any suggestions?
Code:
UPDATE api_tblTmpJobQuote INNER JOIN user_tblJobProp ON api_tblTmpJobQuote.[Job ID] = user_tblJobProp.ID SET user_tblJobProp.Delivery_Charge = Sum([api_tblTmpJobQuote]![TrussExtPrice])
group by api_tblTmpJobQuote.[Job ID],user_tblJobProp.ID ;
What I want to do is update the delivery_Charge column for the individual job ID with the total amount from the TrussPrice column any suggestions?