Hi all! I would really appreciate some help on this:
| ID | Name | Project |
| 1 | Mary | A |
| 1 | Sam | B |
| 1 | Danny | D |
| 2 | Tom | A |
| 2 | Anna | A |
| 3 | Polina | C |
| 4 | Nick | D |
I would like to filter out all the Project As, however, each person is being grouped under an ID and if anyone in that ID is in Project A, i would like to have all of them under that ID to be filtered out as long as someone in that ID is under project A.
My desired output is:
| ID | Name | Project |
| 1 | Mary | A |
| 1 | Sam | B |
| 1 | Danny | D |
| 2 | Tom | A |
| 2 | Anna | A |
I have tried to first filter out those in Project A, then use a Join tool to get the rest of the people out under the same ID but it is not working and there are missing output from my L, J and R
Please help! Thanks alot in advance 🙂