Completion at Year End Formula

shornbuckle

New Member
Joined
Aug 23, 2024
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi - I need a formula that will show me a projection's percentage complete at year end. Every formula I find only shows completion through today.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Welcome to the Board!

In these situations, it is usually helpful if you could show us some sample data and expected output.

MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
I list a set of duration dates for a project, i.e. 05/06/24 start 05/16/25 end. I want to know the completion percentage of this project by 12/31/2024. Every formula I can find only will show me the completion percentage through today.
 
Upvote 0
1724427155840.png


Formula in cell D2:
Excel Formula:
=(C2-A2)/(B2-A2)
 
Upvote 0
That works. I was hoping there was a formula where I didn't have to make an additional column but I can just hide it. Thanks!
 
Upvote 0
You mean something like this?
(Taking the current year for the calculation)

Book6.xlsx
ABC
1Start DateEnd DateYear End Completion %
206/05/202416/05/202563.73%
3
Sheet5
Cell Formulas
RangeFormula
C2C2=(DATE(YEAR(TODAY()),12,31)-A2)/(B2-A2)
 
Upvote 0
That works. I was hoping there was a formula where I didn't have to make an additional column but I can just hide it. Thanks!
You did not mention that requirement (the question was a bit vague), but it is easy enough to do, as Felixstraube demonstrated.
 
Upvote 0
That formula is perfect. How should I wrap it with a MIN/MAX formula so that it stops at 100%? Lastly, I need to add in that if the start date is after the current year, i.e. 02/01/2025, the result should be zero.
 
Upvote 0
So, it appears your question is actually a bit more complicated than you first let on. That is why it is good to consider all cases, and show some examples of your data and expected results.
(The key to a good answer that works for you is asking a good, thorough complete question).

1724431957734.png


Formula in cell C2:
Excel Formula:
=IF(YEAR(A2)>YEAR(TODAY()),0,MIN((DATE(YEAR(TODAY()),12,31)-A2)/(B2-A2),1))
 
Upvote 0
Solution

Forum statistics

Threads
1,221,517
Messages
6,160,266
Members
451,635
Latest member
nithchun

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