Hello all, I am new to Access with very basic understanding of the program and databases in general. I need to change the values in a field (Trans) based on date (LocDate). There are roughly 20 values with thousands of records that need updating using different dates for each. I can do this individually with the query builder, but it seems there should be a way to combine these queries. Below are three of the individual queries, how would I go about combining these into one routine? Thanks.
UPDATE LocData SET LocData.Trans = 2.5
WHERE (((LocData.Trans)=2) AND ((LocData.LocDate)>#3/19/2014#));
UPDATE LocData SET LocData.Trans = 3.5
WHERE (((LocData.Trans)=3) AND ((LocData.LocDate)>#4/1/2014#));
UPDATE LocData SET LocData.Trans = 4.5
WHERE (((LocData.Trans)=4) AND ((LocData.LocDate)>#4/8/2014#));