IF Expression That Evaluates Various Numeric Ranges
Hi WF Community,
Looking for some help with a calculated custom field, and specifically how to write an IF expression when you want to evaluate multiple numeric ranges:
If Field A <= 99,999 then score 1
If Field A is between 100,000 and 299,999 then score 3
If Field A is >= 300,000 then score 5
I think it's mostly the middle (2nd) portion I'm uncertain how to write (between 2 values). Here's what I have so far...
IF(Field A<=99999,1,IF(Field A ????,3, IF(Field A>299999,5,””)))
Thanks.
Nick