Trying to write a forumula based on managers from a contact list
I need to write an IF statement to look for "Managers" in the Team Manager column (contact list) and if they match put the corresponding region in the "Manager Region" column.
EX: IF Team Manager, is Full Name 1, Full Name 2 put US-East, else if Full Name 3, 4 US- West, etc.
IS it possible ?
Answers
-
Are you able to provide some screenshots for reference?
-
Manager Region - is a dropdown with values - EMEA, AMER, APJ etc
Team MANAGER - is a dropdown contact list column- First and last name.
If a manager from Team manager is AB - I want to populate Manager region column with AMER but if the manager is XY then EMEA etc. I guess a nested if statement ?
-
How many of these types of Manager to Region combos do you have? If it's many, it might get too cumbersome for a nested IF statement. So you might want to look at a Index/match and store your combos in another sheet.
But if you only have a few, yes the nested if statement is what you're looking for:
=IF([Team MANAGER]@row = "Jim P", "EU", IF([Team MANAGER]@row = "Bob R", "AMER", ""))
-
I would suggest building out a reference table with Managers in one column and the regions in another then using an INDEX/MATCH
=INDEX({Reference Sheet Region Column}, MATCH([Manager Column]@row, {Reference Sheet Manager Column}, 0))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!