Hi,
I need help to write IF clause in the expression builder in a Report:
IF the value is TRUE then SHOW "RECEIVED"
ELSE (value is FALSE) then SHOW "PENDING"
the problem is it always shows Received, which it should not. And in the textbox that I trying to work on, it shows warning sign saying "Circular Control"
any help on this? Thank you
I need help to write IF clause in the expression builder in a Report:
IF the value is TRUE then SHOW "RECEIVED"
ELSE (value is FALSE) then SHOW "PENDING"
Code:
=IIf([Status],"Received","Pending")
the problem is it always shows Received, which it should not. And in the textbox that I trying to work on, it shows warning sign saying "Circular Control"
any help on this? Thank you