There is a table with data:
We want the numbers in the third column to add up when the value in the first column was "Red" or "White" and the value in the second column was "One" or "Two". Under such conditions, the sum should be 14 (1, 3, 4 and 6 lines are added). I tried this formula:
=SUM(SUMIFS(F$36:F$43;E$36:E$43;{"One";"Two"};D$36:D$43;{"Red";"White"}))
But for some reason the result of this formula is 7 instead of 14. Please help.



Nice question. It needs to be like this in order to return
14instead of7.To check for the multiple conditions the criteria needs to validate both
One&TwoforRed&Whiteon doing it returns an array of 2x2, first gets the value ofRedforOne&Twoas{1;4}and then for the latter as{3;6}In your version of
Excelit will be: