Forum Discussion
WilliamR465
Oct 15, 2024Copper Contributor
Nested if functions
Hi guys, im trying to do a nested if function revolving around this : =IF(F2="less than high school",1, IF(F2="high school",2,IF(F2="associates",3,IF(F2="bachelors",4,IF(F2="masters",5, IF(F2="more t...
Patrick2788
Oct 15, 2024Silver Contributor
I would use SWITCH for this because the logic reads easier:
=SWITCH(
F2,
"less than high school", 1,
"high school", 2,
"associates", 3,
"bachelors", 4,
"masters", 5,
"more than masters", 6,
"None"
)