OR Conditions
It is also possible to check multiple things before choosing whether to show content E.g. the following:
Bin.Type == “Green” || Bin.Type == “Brown”
Will check if the bin type is Green OR Brown. Another use case in a Council is:
Documents.Documents.Type = ‘CT-CASHAB18'
||
Documents.Documents.Type = ‘CT-CASHAB19’
||
Documents.Documents.Type = ‘CT-CASHAB20’
I.e. the rule is basically say show the content if there is a document called CT-CASHAB18/19/20. This was used to enable Annual Bills to be easily separated from other documents visible.
Last updated
Was this helpful?