Dynamic true/false rules
Last updated
Was this helpful?
Last updated
Was this helpful?
Some data items held within OneVu are effectively markers/flags about something.
These have a property of āBooleanā. So if we look at the following, we can see that āDisabledValuationā, is an example of this. This data item says True if they have a Disabled Band Reduction and False if they do not.
We can use these to show/hide content. E.g. letās say we want to ONLY show a question:
Iāve received a reminder - what can I do?
IF the data item ReminderPresent is present on an account.
As this field is a boolean type we can click the copy button and paste it in to the visibility box. Once there we need to remove the ${ } around it because weāre not trying to show it, weāre simply wanting to use in a rule i.e.
If we only wanted to show something if the above value was false we would do this:
AccountDetail.ReminderFlag == false
In technical terms two equals are used to show explicitly what to check for.