Link to home
Start Free TrialLog in
Avatar of cansevin
cansevin

asked on

Sum if with two criteria

I would like to do a sumif that has two criteria.

If Column A matches the value on cell D1.
If Column B has a value of "1"
Sum the values in column C.

How would this equation be? Thanks!!
Avatar of Phillip Burton
Phillip Burton

That when you use not SUMIF, but SUMIFS.
ASKER CERTIFIED SOLUTION
Avatar of Phillip Burton
Phillip Burton

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
So in this case, it's:

=SUMIFS(C:C,A:A,D1,B:B,"1")

Open in new window