COUNTIF For two Values

bksparkz

New Member
Joined
Mar 20, 2014
Messages
36
Hello Everyone.
How can I put these two formulas together?

=COUNTIF(B8:B4000,"<"&(TODAY()-180))+COUNTIF(G8:G4000,"=Y")

Basically the above formula is counting the total cells that are over 180 days long plus the total cells that include Y.
What I need is to count only cells that include a Y and are over 180 days long. If it does not include a Y and is 180 days long I do not want it counted.


Please help. Thank You.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Yeap. That worked. Thanks. One more question. Lets say I want to add a third function to that as well. Saying to count cells if S8:S4000 is blank.
 
Upvote 0
Try

=SUMPRODUCT(--(B8:B4000< TODAY()-180),--(G8:G4000="Y"),--(S8:S4000=""))
 
Upvote 0
Worked again. Thanks. I have one more question. If I would like to change the function of (B8:B4000< TODAY()-180), to instead be to count dates on or after 1/1/2014. What would my final formula be?

Thank you so much.
 
Upvote 0
Try

=SUMPRODUCT(--(B8:B4000>=DATE(2014,1,1)),--(G8:G4000="Y"),--(S8:S4000=""))
 
Upvote 0
Worked again. Now based on my findings. How do I make the cells counted in the formula a different color?
 
Upvote 0
You would need to use a Conditional Formatting formula for rows 8 to 4000 using a formula like

=AND($B8>=DATE(2014,1,1),$G8="Y",$S8="")
 
Upvote 0
How would I do it for this formula.... =SUMPRODUCT(--(B8:B4000< TODAY()-180),--(G8:G4000="Y"),--(S8:S4000=""))
 
Upvote 0
Just curious as I read this, why couldn't you have used sumifs instead of the sumproduct formula? A Sumifs would seem simpler but I may be missing a detail.
 
Upvote 0

Forum statistics

Threads
1,216,059
Messages
6,128,542
Members
449,457
Latest member
ncguzzo

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