SUMIF and AND Functions

IluvPivots

Board Regular
Joined
Feb 13, 2007
Messages
121
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

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

pgc01

MrExcel MVP
Joined
Apr 25, 2006
Messages
19,892
Hi IluvPivots

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

Adjust the ranges.

Hope this helps
PGC
 
Upvote 0

Lewiy

Well-known Member
Joined
Jan 5, 2007
Messages
4,284
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

Andrew Poulsom

MrExcel MVP
Joined
Jul 21, 2002
Messages
73,092
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,191,274
Messages
5,985,692
Members
439,974
Latest member
sjoerdbosch

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
Top