I have a very specific problem. I have a report where the following expression works great:
=IIf([terminated]="-1","No",IIf([graduated?]="-1","No",IIf([dropped]="-1","No","Yes")))
I now want to do this in a query and this expression throws an error:
Active:=IIf([terminated]="-1","No",IIf([graduated?]="-1","No",IIf([dropped]="-1","No","Yes")))
Can someone translate this into an expression that will work in a query?