IF & ISBlank Function
I am trying to test whether or not the score inputted is greater than 80 or less than 80.
If the score is greater than 80 , I would like my status column to populate with a string labeled "Passed".
If the score is less than 80 I would like my status column to populate with a string labeled "Failed".
Heres the issue, I am unable to account for blank columns. My hope is to nest the ISBLANK function inside of the if statement, to prevent the function from reading blank cells as a "Failed".
Is this possible?
See image & function I am currently using below:
=IF(Score2 < 80, "Failed", "Passed")
Comments
-
Hi
You could try:
=IF(ISBLANK(Score2), "", IF(Score2 < 80, "Failed", "Passed"))
Worked for me
Kind regards
Debbie Sawyer Consultant & Training Manager
-
Try this nested IF statement that checks for blank scores and keeps the field blank. I also updated your formula to work in any row.
=IF(ISBLANK(Score@row), "", IF(Score@row < 80, "Failed", "Passed"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!