SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)
=SUMIFS(A1:A10,A1:A10,">5")
In this example, SUMIFS returns the sum of cells that are greater than 5.
=SUMIFS(A1:A10,B1:B10,"red")
Here, the SUMIFS function returns the sum of numbers in A1:A10 when B1:B10 is the color "red".
=SUMIFS(A1:A10,A1:A10,">5",B1:B10,"red")
In this example, SUMIFS returns the sum of cells in A1:A10 greater than 5 when B1:B10 is "red"
=SUMIFS(F5:F15,C5:C15,"red")
SUMIFS returns the sum of column F values when the column C values are "red" in this example.
=SUMIFS(F5:F15,C5:C15,"red",D5:D15,"TX")
In this example, SUMIFS returns the sum of column F values when the column C values are "red" and the column D states are "TX", which stands for Texas (TX)
The SUMIFS function adds all of its arguments that meet multiple criteria.