Formula to Evaluate Multi-Selection and Sum Individual Associated Values
I may be asking too much in terms of formula functionality, but here is my goal / question:
I have the following columns:
Item - These are items that can be selected by the user, multiple items are allowed
Price - Price per item
User Selection - Received from a form
Total Cost - The cost of the selection(s)
I am using an Index / Match function to pull data into Total Cost:
=INDEX(Price1:Price3, MATCH([User Selection (Multi-Select Drop Down)]@row, Item1:Item3, 1))
Can I / How Can I get a total Cost for the situation where multiple selections are made (Option A and Option B)?
Thoughts?
Best Answer
-
See below how you would do that:
=SUMIFS(Price1:Price3, Item1:Item3, HAS([User Selection (Multi-Select Drop Down)]@row, @cell))
Answers
-
See below how you would do that:
=SUMIFS(Price1:Price3, Item1:Item3, HAS([User Selection (Multi-Select Drop Down)]@row, @cell))
-
Thank you!!! I am trying to understand your formula, but it totally works.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!