I need to change some text in a text field based on criteria. I've tried something like this but it doesn't seem to do anything.
Text21.Text.Value=IIF(varisAlarm="Y", "ALARM","ALERT")
varisAlerm is set while data is being iterated through in a data group. I need to be able to change text that is in in a previous group as well as a group after the data group.
Thanks,
Mat
Change text based on criteria
Change text based on criteria
Hello Mat,
Please use following expression:
Thank you.
Please use following expression:
Code: Select all
{varisAlarm == "Y" ? "ALARM" : "ALERT"}
Thank you.