Maverick_NL
New Member
- Joined
- Sep 7, 2022
- Messages
- 7
- Office Version
- 365
- Platform
- Windows
Hi,
I'm trying to make an overview of all projects that have been started and in what status they are in. To make a management summary I want to log how long (days) the status "open" or the status "Hold" is activated for the project.
But when the X shift between the columns the last status is not retained. When the status changes back it starts counting again from start till today "=IF(D3="X";TODAY()-C3;NA())"
Is there a way to count the days that the project has a status even when it switches between open and hold?
Thanks in advance!
I'm trying to make an overview of all projects that have been started and in what status they are in. To make a management summary I want to log how long (days) the status "open" or the status "Hold" is activated for the project.
But when the X shift between the columns the last status is not retained. When the status changes back it starts counting again from start till today "=IF(D3="X";TODAY()-C3;NA())"
Is there a way to count the days that the project has a status even when it switches between open and hold?
Thanks in advance!
Example.xlsx | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | I | J | K | |||
1 | Project Place | Status | ||||||||||
2 | Date Start | Open | Hold | Date completed | Date Stopped | Open | Hold | Completed | Stoppped | |||
3 | Productivity & Sustainability | 10-1-2022 | X | 24-2-2022 | 246 | #N/A | 45 | #N/A | ||||
4 | Research & Scientific | 17-1-2022 | X | 24-1-2022 | 239 | #N/A | #N/A | 239 | ||||
5 | Technology Platform | 7-2-2022 | X | 218 | #N/A | #N/A | #N/A | |||||
6 | Technology Platform | 14-2-2022 | X | 211 | #N/A | #N/A | #N/A | |||||
7 | New Product Development | 28-2-2022 | x | 197 | #N/A | #N/A | #N/A | |||||
8 | New Product Development | 4-3-2022 | X | x | 193 | 193 | #N/A | #N/A | ||||
9 | Research & Scientific | 18-4-2023 | X | #N/A | -217 | #N/A | #N/A | |||||
10 | Productivity & Sustainability | 15-5-2022 | X | #N/A | 121 | #N/A | #N/A | |||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H3:H10 | H3 | =IF(D3="X",TODAY()-C3,NA()) |
I3:I10 | I3 | =IF(E3="X",TODAY()-C3,NA()) |
J3 | J3 | =IF(ISBLANK(F3),NA(),F3-C3) |
K3:K10 | K3 | =IF(ISBLANK(G3),NA(),TODAY()-C3) |
J4:J10 | J4 | =IF(ISBLANK(F4),NA(),TODAY()-C4) |
C4,C6 | C4 | =C3+7 |
C5 | C5 | =C4+21 |
C7 | C7 | =C6+14 |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
H1:XFD1,3:1048576,C2:XFD2,A1:C1 | Cell | contains an error | text | NO |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
B3:B10 | List | =Labels!$A$1:$A$4 |
D3:E10 | List | =Labels!$A$7 |