Deeper Dynamic rules
Some data items are not of a true/false binary nature. Some might be different dependant upon the circumstances of the person. For example the following is a rule in use for a housing benefit customer:
Claim.CaseType == "Private Tenant"
It’s saying where the claim (case) type is Private Tenant show some content.
Also it could be that the value is numerical and you want to only show a question where it is greater than £500.00.
E.g.
AccountSummary.RentArrears > 500.00 (show if rent arrears greater than £500.00)
AccountSummary.RentArrears < 500.00 (show if rent arrears less than £500.00)
AccountSummary.RentArrears == 500.00 (show if rent arrears are equal to £500.00)
Last updated
Was this helpful?