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
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!