I am trying to create a formula that can look at a column with multiple choices, put a number value for each option chosen and add them together for a total. So if they choose option A, amount is 400, option B, another 400, option C, 500, etc. the column would add those amounts together to get 1300.
Here is what I have so far:
=IF(CONTAINS("$400: KALE SALAD ($1.50/pp each add'l person)", [O1: Salad]@row), "400") + IF(CONTAINS("$400: ARUGULA SALAD w/ BLUEBERRIES & FETA ($1.50/pp each add'l person)", [O1: Salad]@row), "400") + IF(CONTAINS("$500: ISRAELI SALAD ($2.00/pp each add'l person)", [O1: Salad]@row), "500")
However, the result in the column looks like this "400400500"
So it is showing the number results I want for options in that column, but how do I get it to add them together vs. just project the numbers next to each other? I tried a SUM at the beginning of the formula, but it doesn't seem to recognize the numbers. Help!