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
Check out the Formula Handbook template!