L
Liliane
I have two tables: tbl_Audits and tbl_AAL_Items.
I need a Yes/No field "Design" is Yes when [Item_Category] is "Design" .
Also, in some cases, I need to keep [Design] is already true as true when
the [Item_category] is not "Design".
Here's my SQL:
UPDATE tbl_Audits INNER JOIN tbl_AAL_Items ON tbl_Audits.Audit_No =
tbl_AAL_Items.Audit_No SET tbl_Audits.Design = IIf([design]=False And
[item_Category]="Design",True);
My problem is this query will set those [Design] as No where their
Item_category is not "Design".
Thanks a million!!!
I need a Yes/No field "Design" is Yes when [Item_Category] is "Design" .
Also, in some cases, I need to keep [Design] is already true as true when
the [Item_category] is not "Design".
Here's my SQL:
UPDATE tbl_Audits INNER JOIN tbl_AAL_Items ON tbl_Audits.Audit_No =
tbl_AAL_Items.Audit_No SET tbl_Audits.Design = IIf([design]=False And
[item_Category]="Design",True);
My problem is this query will set those [Design] as No where their
Item_category is not "Design".
Thanks a million!!!