Formula Help
How to edit this formula to allow when more than one selection is made?
Currently, I have an IF formula that assigns a specific Region when selected from a column that is set up to allow multiple locations. So when ONE specific location is selected, the current formula is set up to lump that location into a specific "Region" (South, ATL, EAST etc.).
How do I edit this IF formula to allow when MULTIPLE specific locations are selected from the column dropdown, to lump into ONE specific "Region" (South or EAST etc.)
Current formula:
=IF(Facility@row = "PMH (Mountainside)", "ATL", IF(Facility@row = "PCRM (Columbus Regional)", "South", IF(Facility@row = "PFH (Fayette)", "South", "")))
Column Option examples:
When ONE option is selected for example "PEM (Eastside)" = "EAST"
How do I edit this formula, when MULTIPLE options are selected for example:
"PEM (Eastside)"
"PAR (Athens)"
to still result = "EAST"
Hope that made sense?
Comments
-
You would need a HAS function.
=IF(HAS(Facility@row, "PEM (Eastside)"), "EAST", IF(HAS(………………………………………
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!