Link to home
Start Free TrialLog in
Avatar of Rayne
RayneFlag for United States of America

asked on

Question

Hello All,

When I am looking at multiple criteria, sumproduct works great - -sumifs might as well?
to look at multiple criteria?

is one better than the other ? please explain?

Rayne
Avatar of duttcom
duttcom
Flag of Australia image

SUMPRODUCT adds the product of two columns or rows, whereas SUMIFS adds values where the multiple criteria (the IFS) are met. With SUMPRODUCT, the multiple criteria are the values to be multiplied before their products are added. With SUMIFS, the multiple criteria are the conditions which must be met in order for a value to be included in the sum.
Avatar of Rayne

ASKER

whats the difference  - its all the same?
Avatar of Rayne

ASKER

can you give an example where using one might be logical than the other? situation wise....
ASKER CERTIFIED SOLUTION
Avatar of duttcom
duttcom
Flag of Australia image

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
The structure of SUMIFS I have used is not quite right - It should be in the form

SUMIFS(RangeToSUM,CriteriaRange1,Criteria1, CriteriaRange2, Criteria2)

You have to specify the criteria and then what the criteria value must be, e.g. SUMIFS(A1:A17,B1:B17,"Fred",C1:C17,"<500") for adding values in column A where Fred is in column B and the amount in column C is less than 500.