Forum Discussion
Laura Lane
Dec 18, 2017Copper Contributor
Nested IF Statement?
=IF(D2<273,”Low Level 1”,IF(D2<289,”Middle Level 1”,IF(D2<304,”High Level 1”,IF(D2<313,”Low Level 2”,IF(D2<321,”High Level 2”,IF(D2<336,”Level 3”,IF(D2<352,”Level 4”,”Level 5”))
Someone please ...
Dec 18, 2017
Hello,
as an alternative to nested IFs, which can get very unwieldy, I suggest you create a lookup table with the threshold numbers in one column and the level text in the next column. Then you can use a simple Vlookup formula to return the result. A lookup table is much easier to maintain than the nested IF formula.
=VLOOKUP(D2,$H$2:$I$9,2,TRUE)