I have a form frmCRApproval which has a textbox txtMatrix that I would like to use as criteria in my query qryCRApproval. I would like to change the criteria to checked if txtMatrix is ValueA but leave the criteria as Null if it is not ValueA.
I currently have
I currently have
IIf([Forms]![frmCRApproval]![txtMatrix]="ValueA",-1,Null) in the criteria.
Comment