E
Ella
I’m trying to run an up date query, if the checkbox is True then un-check it.
If the checkbox is false then check it.
UPDATE tbDetails SET tbDetails.Priority =
IIf("Priority"=False,IIf("Priority"=True,False),True)
WHERE (((tbDetails.SADID)=[Forms]![frmReview]![frmReviewSub]![SADID]));
Is this possible?
Any advice appreciated
Ella
If the checkbox is false then check it.
UPDATE tbDetails SET tbDetails.Priority =
IIf("Priority"=False,IIf("Priority"=True,False),True)
WHERE (((tbDetails.SADID)=[Forms]![frmReview]![frmReviewSub]![SADID]));
Is this possible?
Any advice appreciated
Ella