Project progress

jlister

Board Regular
Joined
Nov 16, 2004
Messages
56
I am looking for an excel formula to identify the latest stage of a project.

A
B
C
D
E
F
G
H
I
J
1
Progress Stages
2
Project
Prepare
Start
30%
60%
90%
Complete
Stage
3
Battersby
21/09/2018
22/09/2018
15/12/2018
30%
4
Phillips
14/07/2018
20/07/2018
25/08/2018
25/11/2018
29/12/2018
90%
5
Jordsan
09/07/2018
15/07/2018
20/08/2018
20/11/2018
24/12/2018
13/01/2019
Complete
6
7

<tbody>
</tbody>

Table shows progress for each project. I need a formula to calculate the stage (shaded green) at any time and for future projects to be added to the program.

For example, if project in row 3 has a date under 60%, then the Stage should change to 60%

Also, if two stages have the same date, it needs to show the stage furthest right

Thanks for any help offered.
 

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,

Two different ways to write basically the same formula, take your pick, H3 or I3 copied down:


Book1
ABCDEFGHI
1Progress Stages
2ProjectPrepareStart30%60%90%CompleteStage
3Battersby9/21/20189/22/201812/15/201830%30%
4Phillips7/14/20187/20/20188/25/201811/25/201812/29/201890%90%
5Jordsan9/7/20187/15/20188/20/201811/20/201812/24/20181/13/2019CompleteComplete
Sheet465
Cell Formulas
RangeFormula
H3=LOOKUP(9.99999999999999E+307,B3:G3,B$2:G$2)
I3=LOOKUP(2,1/B3:G3,B$2:G$2)
 
Last edited:
Upvote 0
In case you have Project with No dates at all, use these versions:


Book1
ABCDEFGHI
1Progress Stages
2ProjectPrepareStart30%60%90%CompleteStage
3Battersby9/21/20189/22/201812/15/201830%30%
4Phillips7/14/20187/20/20188/25/201811/25/201812/29/201890%90%
5Jordsan9/7/20187/15/20188/20/201811/20/201812/24/20181/13/2019CompleteComplete
6New Project
Sheet465
Cell Formulas
RangeFormula
H3=IFERROR(LOOKUP(9.99999999999999E+307,B3:G3,B$2:G$2),"")
I3=IFERROR(LOOKUP(2,1/B3:G3,B$2:G$2),"")


EDIT: PS, don't forget to format result cells as "percentage".
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,804
Messages
6,121,652
Members
449,045
Latest member
Marcus05

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