I want to print [FirstName] from a query if [Inactive], which belongs to the same query, is true. This give me #error:
=IIf([Inactive],[FirstName],"")
However this works:
=IIf([Inactive],"<inactive","")
and so does this:
=[FirstName]
not sure why a combination of the two gives me #error
=IIf([Inactive],[FirstName],"")
However this works:
=IIf([Inactive],"<inactive","")
and so does this:
=[FirstName]
not sure why a combination of the two gives me #error