Percentage of column within 1yr from today

APR1209

New Member
Joined
Apr 5, 2018
Messages
2
Good morning all,
I have created a training tracker with completion dates entered in the cells. I now want to calculate the percentage of values in a column that are within 1yr from today. It is important that it is rolling and not within a static date range.
V/r,
Anthony
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Welcome to the Board!

Is this one year in the future, or in the past?
Which column is this?
What row does the data start in?
Are there any blanks in these cells, and if so, are they to be counted in your percentage?
 
Upvote 0
One year in the past.
Column J
Starts on row 3, ends on row 69.
There are blanks that I DO NOT want counted, additionally there are "N/A"s that I DO want counted.
thank you for your quick response
 
Upvote 0
Try this formula:
Code:
=COUNTIF(J3:J69,">" & EDATE(TODAY(),-12))/COUNTA(J3:J69)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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