Forum Discussion
jsillers
Sep 27, 2022Copper Contributor
IFS function
'In excel I'm trying to use the IFS function to say the following: if A1 is between 0-150, then return a value of "1." If A1 is between 151-300, then return a value of "2." If A1 is between 301-450,...
- Sep 27, 2022
=IF(AND(A1>=0,A1<=150),1,IF(AND(A1>=151,A1<=300),2,IF(AND(A1>=301,A1<=450),3)))
An alternative is a nested IF formula. The syntax of IFS is a bit easier however.
jsillers
Sep 27, 2022Copper Contributor
Or is there a better function to use than IFS?
OliverScheurich
Sep 27, 2022Gold Contributor
=IF(AND(A1>=0,A1<=150),1,IF(AND(A1>=151,A1<=300),2,IF(AND(A1>=301,A1<=450),3)))
An alternative is a nested IF formula. The syntax of IFS is a bit easier however.
- jsillersSep 27, 2022Copper ContributorGreat, thank you so much! It's just always hard figuring out where the AND and the parenthesis go...