The first 2 lines are my test to get the sum with multipliers figured out and that works. (If better way, open to suggestions)
Tier 3 multipliers:
=SUM(Brand@row * 9, [Wine Score]@row * 6, [The Region]@row * 3, Occassion@row * 0, Personas@row * 0, Pricepoint@row * 9, Specificity@row * 3, [Distinct from the Rest of the Portfolio]@row * 4, Potential@row, Hierarchy@row * 6)
All Other Tiers:
=SUM(Brand@row * 9, [Wine Score]@row * 6, [The Region]@row * 2, Occassion@row * 1, Personas@row * 1, Pricepoint@row * 9, Specificity@row * 0, [Distinct from the Rest of the Portfolio]@row * 4, Potential@row * 9, Hierarchy@row * 6)
Line 4 is where I'm attempting the combination SUM IF OR and failing.
What I need is:
IF Tier@row = Tier 3, Use the Tier 3 string from above, otherwise use the All Other Tiers string from above.
Thank you in advance.