Sign in to join the conversation:
Hi, which formula can I use to calculate the expected Progress (depending on the current date)?
Thanks
Could you give more details and share some screenshots?
Hi Paul,
I have the Start Date, End Date, Duration (days) and the Progress given by each responsible. From this Information I would like to calculate the expected Progress, how shall the Project must be going on an specific date.
For example:
I have a Task with 10 days as Duration. by the second day the Progress completed is 20% (that means is running accordingly to plan) and by the third day, the Progress is the same. That means that by the third day the Project has already a delay.
So I would like to know which formula can I use to find out this expected or planned Progress and then I can be able to make a comparison against Progress completed and create alerts if neccesary.
Thanks.
If you create a [Projected % Complete] column, you can enter this formula into it...
=(TODAY() - [Start Date]@row) / ([Scheduled End Date]@row- [Start Date]@row)
This will give you how far into the scheduled time you are for whatever today's date is. You can then build your alerts off of whether your actual % complete is less than, greater than, or equal to where you should be (projected % complete).
To show the projected finish date based off of the current progress and the start date, create a date type column [Projected End Date] and insert this formula...
=[Start Date]@row+ ((((TODAY() - [Start Date]@row) / ([Scheduled End Date]@row - [Start Date]@row)) - [Actual % Complete]@row) * ([Scheduled End Date]@row - [Start Date]@row)) + ([Scheduled End Date]@row - [Start Date]@row)
Thank you!
I have a similar request: I would like to see how the projected end date of a task will impact the overall projected end date of the project taking the predecessor relationships into account. Any ideas on how to do that with a function or in a dashboard?
Hello, I face one difficulty trying to transform text in date using DATE formula I want to find the first day of a week based on the week number & year number put in a cell For instance in a cell I find "25-45" FOR Year= 2025 & Week= 45, so I look for the monday of this week that should be the 3rd of nov Step 1 find first…
I have a formula that I have used for years on a sheet and it was working an hour ago and then all of a sudden it just stopped working, I went out the sheet and back in and . The formula is =IF([Shop Order]@row = 0, (COUNTIF((RN:RN), RN@row ))) but instead of returning the value it says #INVALID COLUMN VALUE Got it working…
Hi Everyone, Looking for some assistance on a dashboard report issue I am running into. I have a dashboard with 3 reports added as Web Content. All 3 reports use at 1 common sheet. All 3 reports are published as read only. Users are not shared the underlying sheets. All 3 reports have some form of filtering. 2 of the…