Aging report count dates

Geoff_canada

Board Regular
Joined
May 26, 2008
Messages
56
Hello there

I am sure this is a pretty simple problem for all the excel experts out there...unfortunately I am not one of them :)

I am trying to generate an aging report (ie Current, >30, >60, >90) by referencing a worksheet that has A1:A100 populated with dates.

What I would like to do is count the number of dates in column A and reference current date populate a separate worksheet with a count total of how many fall into current, >30, >60 days etc etc

Not sure I explained it properly but hopefully someone can help.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Firstly set up some check cells, lets say:<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
B1: =TODAY()+30<o:p></o:p>
B2: =TODAY()+60<o:p></o:p>
B3: =TODAY()+90<o:p></o:p>
<o:p> </o:p>
Then you can use the following formulas to count:<o:p></o:p>
<o:p> </o:p>
Current: =COUNTIF(A:A,"<="&B1)<o:p></o:p>
>30: =COUNTIF(A:A,">"&B1)<o:p></o:p>
>60: =COUNTIF(A:A,">"&B2)<o:p></o:p>
>90: =COUNTIF(A:A,">"&B3)<o:p></o:p>
<o:p> </o:p>
Hope that helps.<o:p></o:p>
 
Upvote 0
Hi thanks for the info..but didn't quite work

I tried your suggestion and it puts all the 29 entries in A column under current and zero for >30 >60 >90.

Any other suggestions?
 
Upvote 0
How do you define these ranges. Which dates fall into the category "Current" as of today? Which dates are ">30"?
 
Upvote 0
Hi Barry

Basically what I have is one spreadsheet that is a list of IT related issues...so just simple records that have Date Problem was identified (column A), Record ID (B), record type (c), Probem Summary (e) etc

In a separate executive summary sheet, I want to generate a report that will reference the open problem sheet and count how many of the total records are over 90 days old, over 60 days, over 30 days and how many our current. I want this to generate based on current date so how many as of today are >90, >60 etc. The fate values in the source sheet do not change..they are static

All I need is a simple count (ie if i have 100) total records listed in open problem sheet...I want to see how many fall into each category
 
Upvote 0
Hi thanks for the info..but didn't quite work

I tried your suggestion and it puts all the 29 entries in A column under current and zero for >30 >60 >90.

Any other suggestions?

I'm not sure I understand the results that you have explained, unless I have mis-understood what you mean by >30, etc. I took this to be 30 days.
 
Upvote 0
So current is any date that is 30 days old or later?

So for >90 in C1

=COUNTIF(A:A,"<"&TODAY()-90)

>60 in C2

=COUNTIF(A:A,"<"&TODAY()-60)-C1

>30 in C3

=COUNTIF(A:A,"<"&TODAY()-30)-SUM(C1:C2)

Current in C4

=COUNT(A:A)-SUM(C1:C3)
 
Upvote 0

Forum statistics

Threads
1,215,034
Messages
6,122,782
Members
449,095
Latest member
m_smith_solihull

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