AND Conditions
The following is an example rule in place for a benefit customer:
Claim.Hb.RentPayLandlordWeeklyAmount.Value == Claim.Hb.BenefitAward.AwardAmount.Value &&
Claim.Hb.BenefitAward.AwardAmount.Value > 0
&&
Claim.Hb.RentFrequency == "Calendar Monthly"
&&
Claim.Hb.CurrWeeklyHBDHP == 0
What this is saying is show the content only IF:
The amount paid to the landlord is the same as the benefit award
AND
The Housing benefit award is greater than 0
AND
Their payment frequency is Calendar Monthly
AND
The amount of DHP involved is 0
I.e. when you want to add an AND condition to your rule you use &&
Last updated
Was this helpful?