if blank and if not blank then display a word
We are trying to do a check in and out smartsheet for the people on our team that travel a lot. We have incorporated Google Forms (because Smartsheet Forms is extremely limited) so that we can restrict who sees the Smartsheet. So each person has a link to their own editable google form so that they can edit their own line as many times as they want and constantly update where they are at. So what I need is.
- Formula that says when someone is "Available" or "Not Available"
- I have currently: =IF(ISBLANK([On Job]@row), "Available", IF(NOT(ISBLANK([On Job]@row, "Not Available"))))
- I get the #INCORRECT ARGUMENT SET error when I put anything into the "On Job" column
Any help would be much appreciated!
Answers
-
UPDATE: was able to use this formula to make this work - =IF(ISBLANK([On Job]@row), "Available", "Not Available"
- Now I want to add on "if off job is not blank then say "Available"
Any more guidance would be much apprecaited
-
Hi @Billy-Rock
You can add this in by using an OR function, that will let the formula know that if either of these criteria are met, return "Available". Try this:
=IF(OR(ISBLANK([On Job]@row), NOT(ISBLANK([Off Job]@row))), "Available", "Not Available")
This will look at either of the criteria. If you want to specify that both of these need to be met, you can change the OR to AND. (See here for more information on OR).
Let me know if you have any questions about this!
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!