J
Julie
I have an unbound field on a report with this control source:
=IIf([ParentalStress]<14,"0",IIf([ParentalStress]>19,"2","1"))
The field is in a query that does a lot of calculation already. I want to
display 0, 1, or 2 in the report depending on the result of the calculation
in the query.
Here's the problem, [ParentalStress] can be null in the query. If so, the
report shows "1" instead of "0". Is there a way to fix this?
=IIf([ParentalStress]<14,"0",IIf([ParentalStress]>19,"2","1"))
The field is in a query that does a lot of calculation already. I want to
display 0, 1, or 2 in the report depending on the result of the calculation
in the query.
Here's the problem, [ParentalStress] can be null in the query. If so, the
report shows "1" instead of "0". Is there a way to fix this?