Reference a contact in IF formula

I'm trying to return a value of "TRUE" in a tick box column if a contact referenced in the same row is a specific person. It's a multiple contacts column too but I've done dummy runs with only one contact and it still won't work. I've tried the following and they don't work, what am I doing wrong? π
=IF(CONTAINS("Joe Bloggs", Team@row), true, "")
=IF(CONTAINS("<joebloggs@outlook.com>", Team@row), true, "")
=IF(CONTAINS("joebloggs@outlook.com", Team@row), true, "")
=IF(CONTAINS("Joe Bloggs <joebloggs@outlook.com>", Team@row), true, "")
Best Answer
-
Try this:
=IF(FIND("Joe Bloggs", Team@row), 1)
Answers
-
Try this:
=IF(FIND("Joe Bloggs", Team@row), 1)
-
I found an error in original formula with multiple contacts, try this one instead:
=IF(COUNTIF(Team@row, FIND("Joe Boggs", @cell) >= 1), 1)
-
Thanks so much! x
-
The first one is working for me in cells where my contact is alone and in ones where he's not!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!