Hi. Previously, I have posted this question How to split the name and display the status of task/project for each name?. Usually, each staff has their own task for the similar project. I tried to add additional column, which is Task and the output only recognize the first and second name of staff (M1 and M2), but for M3 and M4, it can't recognized as shown in table below. The status project for M2 should be in progress instead of on-hold. Kindly need your help for this question and thank you.
Desired output:
project_tracker.xlsx | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | |||
1 | Date | 4/4/2022 | |||||||||
2 | Date1 | Project | Task | status | manager | Project | A | ||||
3 | 4/4/2022 | A | Task1 | in progress | M1/M2 | Manager | Status Project | ||||
4 | 4/4/2022 | A | Task2 | on hold | M3/M4 | M1 | in progress | ||||
5 | 4/5/2022 | B | Task3 | in progress | M3/M2 | M2 | on hold | ||||
6 | 4/6/2022 | C | Task4 | other | M4/M5/M6 | ||||||
Sheet4 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H4:H6 | H4 | =IFNA(TRIM(MID(SUBSTITUTE(VLOOKUP(I$2,B$3:E$6,4,0),"/",REPT(" ",100)),ROWS(H$4:H4)*100-99,100)),"") |
I4:I6 | I4 | =IFNA(IF(H4="","",VLOOKUP(I$2,B3:E6,3,0)),"") |
Desired output:
project_tracker.xlsx | ||||
---|---|---|---|---|
H | I | |||
10 | Date | 4/4/2022 | ||
11 | Project | A | ||
12 | Manager | Status Project | ||
13 | M1 | in progress | ||
14 | M2 | in progress | ||
15 | M3 | on hold | ||
16 | M4 | on hold | ||
Sheet4 |