N
NeonSky via AccessMonster.com
Good Afternoon,
Wow I am surprised I am having so much trouble with something that is so
simple...perhaps you can tell me if what I am trying to do is even possible.
I would like to do multiple updates within a single query, can I establish
something similar to the "logic" below? Thank you!
UPDATE tblWeeklyBase
SET tblWeeklyBase.CONVERTED1 = "Daily"
WHERE (((tblWeeklyBase.CCODE)="D")),
SET tblGRCWeeklyBase.CONVERTED1 = "Occupy"
WHERE (((tblGrcWeeklybase.CCODE)="LD"));
Wow I am surprised I am having so much trouble with something that is so
simple...perhaps you can tell me if what I am trying to do is even possible.
I would like to do multiple updates within a single query, can I establish
something similar to the "logic" below? Thank you!
UPDATE tblWeeklyBase
SET tblWeeklyBase.CONVERTED1 = "Daily"
WHERE (((tblWeeklyBase.CCODE)="D")),
SET tblGRCWeeklyBase.CONVERTED1 = "Occupy"
WHERE (((tblGrcWeeklybase.CCODE)="LD"));