IF HAS Formula for Contact List
I want the "Office(s)" field to display "OSA" if the Task Owner contains All. The Task Owner may have multiple contact lists selected.
Current Formula: =IF(CONTAINS(All, [Task Owner]@row, "OSA", ""))
Error: #Unparsable
Columns:
- Task Owner - Contact List
- Office(s) - Text
If I change the formula to include quotes about "All", the error says "Incorrect Argument Set".
Best Answer
-
@Karrie Try this
=IF(FIND("All", [Task Owner]@row, 1) > 0, "OSA", "")
Answers
-
@Karrie Try this
=IF(FIND("All", [Task Owner]@row, 1) > 0, "OSA", "")
-
Hi @Karrie,
Trying using HAS instead:
=IF(HAS([Task Owner]@row,"All"),"OSA","")
Your formula is reading as Unparseable as the brackets are in the wrong place:
=IF(CONTAINS(All, [Task Owner]@row), "OSA", "")
Would be the correct syntax.
Hope this helps, but if you've any problems/questions then just post them up.
-
Thank you! This worked exactly as I was hoping for.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!