Home > OS >  SUM a data with some category using if and sumif
SUM a data with some category using if and sumif

Time:07-05

im on learning excel here. so i trying to sum a total unit based on region west and item is pencil. i try several things and it doesn't show any value, just blank. i try

=IF(AND(B:B="West";D:D="Pencil");SUMIF(D:D;"Pencil";E:E);"")

but it won't work.. please help.. :)

screenshot of the excel

CodePudding user response:

You could change your formula to:

=SUMIFS(E:E;D:D;"Pencil";B:B;"West")
  • Related