How to count late dates based with conditions

Lookingforhelp2020

New Member
Joined
Mar 5, 2020
Messages
4
Office Version
  1. 2016
Platform
  1. Windows
I want to set up a metric for a sheet I have been working on but I am stuck on step 1. I would like to count the amount of tasks in a specific state that are over 7 days late from today's date.

I.e. - Count the task if column D says 'In Review' and the date in column T is 7+ days from today's date. Otherwise the task is not counted.

I have tried using this formula but it keeps showing me a count of 0:

=countifs(D:D,"In Review", T:T,"<=7"&Today())


Any help would be appreciated!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi & welcome to MrExcel.
How about
=countifs(D:D,"In Review", T:T,"<="&Today()-7)
 
Upvote 0
Hi & welcome to MrExcel.
How about
=countifs(D:D,"In Review", T:T,"<="&Today()-7)


Hi! Thanks for the help! I tried moving the -7 around as mentioned but I am still getting a count of 0. Does it matter that the dates in column T are in the 05-Mar-2020 07:57 format?
 
Upvote 0
The format shouldn't matter as long as they are dates & not text.
Select the column & change the format to General, what do you see?
 
Upvote 0
I changed the format to general and I still see the same date/time format in the column.

I have even tried removing the -7 just to see if it would count any date that is late in general that is also in review and I still get a count of 0.
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

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