I have an update query in my macro to update a field in my form. The macro runs a Make Table query, so that the data in my query is stored in a temporary table, then runs the update query to put the temp table data into my form/permanent table. Here is the trouble:
When my update query runs, it returns zeroes..... the data is all there, it should be updating to percentages... I am not sure how to troubleshoot!
Here is the code:
UPDATE tblExecutionTracking LEFT JOIN tblPercentage ON (tblExecutionTracking.[Entry #] = tblPercentage.[Entry #]) AND (tblExecutionTracking.[BU / Project] = tblPercentage.[BU / Project]) SET tblExecutionTracking.[BU %] = [tblPercentage]![SumOfRatio];
The data matches... but it updates everything to zero!?!