Reputation: 49
I'm using Excel 2010 and I need a formula which can take criteria from 2 different columns, SUM the result of all matching rows:
The columns are Area Manager and Project Type and if both criteri amatch I'd like to SUM the results from a third column on all matching rows.
e.g =SUMIF(F:F,"Adam Jones",H:H ) and =SUMIF(G:G,"Special Projects",H:H ) but all in one cell?
Thanks for any help
Upvotes: 1
Views: 175
Reputation: 1069
I think you can use SUMIFS function
SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)
=SUMIFS(H:H,F:F,"=Adam Jones",G:G,"=Special Projects")
Upvotes: 2