I want to return the Total Revenue from the below table (Table1), where Colour is = R & W, Item = A & B and Size = S & M. I tried using the formula below but it doesn't return the correct value. Adding multiple values to the third criteria range is the problem, it ignores all bar the first value in Criteria3. I assumed that the separator in Criteria2 ... CriteriaN would be ;
=SUM(SUMIFS(Table1[Revenue],Table1[Colour],{"R","W"},Table1[Item],{"A";"B"},Table1[Size],{"S";"M"}))
Any help would be greatly appreciated.
Thanks,
Jon
=SUM(SUMIFS(Table1[Revenue],Table1[Colour],{"R","W"},Table1[Item],{"A";"B"},Table1[Size],{"S";"M"}))
Any help would be greatly appreciated.
Thanks,
Jon
Colour | Item | Size | Revenue |
R | A | S | 100 |
R | A | M | 200 |
R | A | L | 300 |
W | A | S | 400 |
W | A | M | 500 |
W | A | L | 600 |
B | A | S | 700 |
B | A | M | 800 |
B | A | L | 900 |
R | B | S | 1000 |
R | B | M | 1100 |
R | B | L | 1200 |
W | B | S | 1300 |
W | B | M | 1400 |
W | B | L | 1500 |
B | B | S | 1600 |
B | B | M | 1700 |
B | B | L | 1800 |
R | C | S | 1900 |
R | C | M | 2000 |
R | C | L | 2100 |
W | C | S | 2200 |
W | C | M | 2300 |
W | C | L | 2400 |
B | C | S | 2500 |
B | C | M | 2600 |
B | C | L | 2700 |