Dontcomehereoften
New Member
- Joined
- Dec 6, 2023
- Messages
- 1
- Office Version
- 2016
- Platform
- Windows
Hi all,
So I have a table similar to the below which acts as a matrix, so Req ID 1 is in F1 but could be in any number of Fx, up to about F80.
The status of a Req ID can be updated
The Team X is the team who is interested/working on the particular Req.
Ideally I would like to extract from the above, by Team (using Team 3 in example below) that shows something like the below where if Team 3 is in any Fx columns, show the Fx Number, the Req ID aligned to that entry and the Status of that Req ID;
VBA cannot be used due to policy and also can be easily refreshed as an when required. Is this possible?
Many thanks in advance
So I have a table similar to the below which acts as a matrix, so Req ID 1 is in F1 but could be in any number of Fx, up to about F80.
The status of a Req ID can be updated
The Team X is the team who is interested/working on the particular Req.
Req ID | Status | F1 | F2 | F3 | F4 | F5 |
---|---|---|---|---|---|---|
1 | Agreed | Team 1 | ||||
2 | Rejected | Team 2 | ||||
3 | Agreed | Team 3 | ||||
4 | Rework | Team 2 | ||||
5 | Draft | Team 3 | ||||
6 | Agreed | Team 1 | ||||
7 | Draft | Team 3 |
Ideally I would like to extract from the above, by Team (using Team 3 in example below) that shows something like the below where if Team 3 is in any Fx columns, show the Fx Number, the Req ID aligned to that entry and the Status of that Req ID;
Feature | Req ID | Status |
---|---|---|
F2 | 3 | Agreed |
F2 | 5 | Draft |
F5 | 7 | Draft |
VBA cannot be used due to policy and also can be easily refreshed as an when required. Is this possible?
Many thanks in advance