
Originally Posted by
orange
From a logical perspective, consider this.
Lets say TblA is the table with the Yes/No field (I 'll call it Chk, and in this example it is a Yes/No field (Boolean))
and your second table is TblB. TblA and TblB both have a field called Id.
TblA.Chk will be True/Yes if the Id is in TblB
TblA.Chk will be No/False if the Id is not in TblB
So,you know how to set the field to Yes/True where the Id is equal.
Well what if you first set all the Chk fields to NO/False,
then run the query you already know, to set the Chk to Yes/Ture where the Ids are equal.
That way you get the result you want.
The query you already know is
So, the query you need to set all the values of Chk to No/False is
Make sense?