Is it possible to update a YES/NO field in a query from an iif statement? I cant seem to get it to work..
the end goal is geting a jobcard to show as closed as soon as the invoice date is entered
IIf(IsNull([tblManufactured]![Invoice Date]),[tblManufactured]![Job Closed]=False,[tblManufactured]![Job Closed]=True)
I've been trying to do it as an expression in a query IIf(IsNull([tblManufactured]![Invoice Date]),[Job Closed]=False,[Job Closed]=True)
[Job Closed] is the yes/no field i'm trying to autoupdate