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
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 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!