Seems like this should be easy enough to do and based on the SQL examples that I've seen following should be correct. I have 2 tables one is tblProgressBillingDetails and another which I want to update with values from the table above called tblBillingDetails. When I run the update no values are updated in the tblBillingDetails table?
Statement is:
UPDATE tblProgressBillingDetails INNER JOIN tblBillingDetails ON tblProgressBillingDetails.ProposalDetailsID = tblBillingDetails.ProposalDetailsID
SET tblBillingDetails.TotalBilled = [tblProgressBillingDetails].[BillingAmount];
Any help hugely appreciated (starting to think that perhaps more sleep would help this issue)
Statement is:
UPDATE tblProgressBillingDetails INNER JOIN tblBillingDetails ON tblProgressBillingDetails.ProposalDetailsID = tblBillingDetails.ProposalDetailsID
SET tblBillingDetails.TotalBilled = [tblProgressBillingDetails].[BillingAmount];
Any help hugely appreciated (starting to think that perhaps more sleep would help this issue)