Hi. I want to create a summary report. The table below (at the left side) show that project A is in progress and managed by M1 and M2 (need to key in by staff).
To create a summary report (table at the right side), I use INDEX and MATCH (with the help from helper column). But the problem is, it cannot separate the manager name to each row. Is there a way on how I can split M1/M2, each name to summary report and display the status for each. Thank you.
Desired output:
To create a summary report (table at the right side), I use INDEX and MATCH (with the help from helper column). But the problem is, it cannot separate the manager name to each row. Is there a way on how I can split M1/M2, each name to summary report and display the status for each. Thank you.
project_tracker.xlsx | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | C | F | G | H | I | J | K | L | ||||||
5 | Date | 4/4/2022 | ||||||||||||
6 | Date1 | Project | status | manager | Helper | Project | A | |||||||
7 | 4/4/2022 | A | in progress | M1/M2 | 44655AM1/M2 | Manager | Status Project | |||||||
8 | M1 | - | ||||||||||||
9 | M2 | - | ||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H7 | H7 | =A7&C7&G7 |
L8:L9 | L8 | =IFNA(INDEX(F:F,MATCH(L$5&L$6&K8,H:H,0)),"-") |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
L6 | Any value |
Desired output:
project_tracker.xlsx | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | C | F | G | H | I | J | K | L | ||||||
5 | Date | 4/4/2022 | ||||||||||||
6 | Date1 | Project | status | manager | Helper | Project | A | |||||||
7 | 4/4/2022 | A | in progress | M1/M2 | 44655AM1/M2 | Manager | Status Project | |||||||
8 | M1 | in progress | ||||||||||||
9 | M2 | in progress | ||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
H7 | H7 | =A7&C7&G7 |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
L6 | Any value |