Hello,
I am trying to build an UPDATE query in Access 2003 via the Design view but keep getting an 'Enter Parameter Value' dialogue every time I attempt to preview the results in datasheet view.
The update query is referencing the results of a saved union query that normalises data imported into a temporary table from a .csv file
I am using the same Union query as the source to an append query which works fine but it doesn't want to know for the update
The SQL is
Any ideas why this isn't working or is it just bad syntax?
Many thanks.
I am trying to build an UPDATE query in Access 2003 via the Design view but keep getting an 'Enter Parameter Value' dialogue every time I attempt to preview the results in datasheet view.
The update query is referencing the results of a saved union query that normalises data imported into a temporary table from a .csv file
I am using the same Union query as the source to an append query which works fine but it doesn't want to know for the update
The SQL is
Code:
UPDATE tblCommodityResource SET tblCommodityResource.Allocation = [qryUnionResourceColumnsToRows]![Allocation]
WHERE (((tblCommodityResource.ShiftID)=[qryUnionResourceColumnsToRows]![ShiftID]) AND ((tblCommodityResource.Commodity)=[qryUnionResourceColumnsToRows]![Commodity]));
Any ideas why this isn't working or is it just bad syntax?
Many thanks.