Instead of it being just one value on an indicator, how to input multiple values?
(indicator1 =30)
But if I want it to screen for a value of either 30, 32, 35……how would I go about this? or between two values such as 30-33
There you go:
(indicator1 =30) OR (indicator1 =32) OR (indicator1 =35) //each one is true
(indicator1 >=30) AND (indicator1 <= 35) //whenever in that range is true
Thankyou Roberto! Much appreciated.