Forum Discussion
Consulting999
May 22, 2022Copper Contributor
How do I create a nested IFS function for numbers and blank cells?
I am collecting data for an exam we conduct at work. We need to count how many people have passed, failed, and how many did not even take the exam (so 3 categories total). I have been playing around ...
- May 22, 2022
Let's say R2 contains a result.
=IF(R2="","DNS",IF(R2>50%,"PASS","FAIL"))
or
=IFS(R2="","DNS",R2>50%,"PASS",R2<=50%,"FAIL")
This can be filled down.
HansVogelaar
May 22, 2022MVP
Let's say R2 contains a result.
=IF(R2="","DNS",IF(R2>50%,"PASS","FAIL"))
or
=IFS(R2="","DNS",R2>50%,"PASS",R2<=50%,"FAIL")
This can be filled down.
Consulting999
May 22, 2022Copper Contributor
HansVogelaar thanks so much that worked perfectly!