To check whether a value is within a certain range (eg the claimant is aged between 18 and 25), you write a rule with two conditions. The first condition is used to check if the value is greater than the lower end of the range, while the second condition is used to check if the value is less than the upper end of the range. The two conditions must be connected by an and.
For example:
the claimant is in the eligible age group if
the claimant's age >= 18 and
the claimant's age <= 25
See also: