SUMIF and AND Functions

IluvPivots

Board Regular
Joined
Feb 13, 2007
Messages
141
Office Version
  1. 2016
What would the formula look like if I want to use both functions.

SUM column D
If Column A = "Label1"
AND
Collumn B = "Lable2"

Help Please.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi IluvPivots

Use
=SUMPRODUCT(--(A1:A10="Label1"),--(B1:B10="Label2"),D1:D10)

Adjust the ranges.

Hope this helps
PGC
 
Upvote 0
It would look like this:
Code:
=SUMPRODUCT(--(A1:A1000="Label1"),--(B1:B1000="Label2"),D1:D1000)

Adjust ranges to suit.

Note: I have assumed that your spelling of Label2 was a typo! :)
 
Upvote 0
Example:

=SUMPRODUCT(--(A1:A100="Label1"),--(B1:B100="Label2"),(D1:D100))

Adjust the ranges to suit, but they must all be the same size and can't be entire columns.
 
Upvote 0

Forum statistics

Threads
1,214,976
Messages
6,122,543
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top