If multiple cells are not blank - check the box
I figured the formula to check a box in a column if one other column is not blank, but I can't figure out how to check the box if multiple cells within a range are not blank. I'm using this formula:
=ISBLANK([Monday | Start Time]1) = false
I have a form that feeds into a sheet that has options for meeting start time, meeting end time, reception, dinner start, etc. Currently I have it set up to notice when meeting start time is not blank, but if someone only has a reception on that day, and not a meeting, I need it to check the box.
I need something that does this:
=ISBLANK([Monday | Start Time]9:[Monday | Reception & Dinner | Location]9) = false
Thoughts?
Answers
-
If you are trying to find if any of them is blank then this should work:
=OR(ISBLANK([Monday | Start Time]@row),ISBLANK([Monday | End Time]@row),ISBLANK([Monday | Reception & Dinner | Location]@row),ISBLANK([Monday | Reception & Dinner | Start Time]@row),ISBLANK([Monday | Reception & Dinner | End Time]@row))
Use @row instead of the row number, especially if you are using on multiple rows. Makes it easier for SmartSheet to calculate. I use it most of the time unless I am referencing specific cells.
You should check out
https://help.smartsheet.com/functions
and the examples sheet
https://app.smartsheet.com/sheets/fG59vPv8pw2mcCRM976JHQ2chGp85vJxW3rRv5X1?view=grid
if you are not aware of them
✅Did my post help answer your question or solve your problem? Please help the Community by marking it as the accepted answer/helpful. It will make it easier for others to find a solution or help to answer!
-
I am not sure I follow EXACTLY what you are trying to do.
Can you explain in detail what each set of criteria is for checking the box similar to the below?
If [Monday | Start Time] is not blank
or
If the above is blank, but this cell, that cell, and a third cell (list specifics) are not blank
or
If all of the above are blank, but this 5th call is not
-
Thanks Frank. This formula worked -
=OR(ISBLANK([Monday | Start Time]@row),ISBLANK([Monday | End Time]@row),ISBLANK([Monday | Reception & Dinner | Location]@row),ISBLANK([Monday | Reception & Dinner | Start Time]@row),ISBLANK([Monday | Reception & Dinner | End Time]@row))
Although I needed the box to check if the boxes were NOT blank, so I just added a NOT infront of ISBLANK and it worked.
Thanks again.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 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!