Countifs / Sumifs query

gmazza76

Well-known Member
Joined
Mar 19, 2011
Messages
769
Office Version
  1. 365
Platform
  1. Windows
Good Afternoon,

I am trying to do a sumif or countif based on a date range.
I can get the countif section to work with no issues when I remove the red txt section.
I am trying to get column E to add together anything with "E" + "DF" togther based on the date in column B, Active in Column D and so on

=COUNTIFS($B$15:$B$3000,"="&TODAY(),$D$15:$D$3000,"Active",$E$15:$E$3000,"E",$E$15:$E$3000,"DF",$F$15:$F$3000,"Yes",$G$15:$G$3000,"Yes")

All help appreciated
Thanks
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Countifs is an AND criteria...

It's only going to count rows where both of those criteria are TRUE..

So for example, Assuming all other criteria are true,
Row 15 will only be counted if the value in E15 = "E" AND the value in E15 = "DF"
This of coarse is not possible.

I believe what you want to say is
Row 15 will be counted if the value in E15 = "E" OR the value in E15 = "DF"

Try
=SUM(COUNTIFS($B$15:$B$3000,"="&TODAY(),$D$15:$D$3000,"Active",$E$15:$E$3000,{"E","DF"},$F$15:$F$3000,"Yes",$G$15:$G$3000,"Yes"))
 
Last edited:
Upvote 0
Many thanks that was exactly what I was looking for



Countifs is an AND criteria...

It's only going to count rows where both of those criteria are TRUE..

So for example, Assuming all other criteria are true,
Row 15 will only be counted if the value in E15 = "E" AND the value in E15 = "DF"
This of coarse is not possible.

I believe what you want to say is
Row 15 will be counted if the value in E15 = "E" OR the value in E15 = "DF"

Try
=SUM(COUNTIFS($B$15:$B$3000,"="&TODAY(),$D$15:$D$3000,"Active",$E$15:$E$3000,{"E","DF"},$F$15:$F$3000,"Yes",$G$15:$G$3000,"Yes"))
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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