I have data for employees working on different projects as in the below example where A,B,C,D,E,& F represents projects.
| Employee ID | A | B | C | D | E | F |
| 1 | Yes | Yes | | | | |
| 2 | | | Yes | Yes | | |
| 3 | Yes | | | Yes | | Yes |
| 4 | | | | Yes | | |
| 5 | | | | | Yes | |
I want to add a new column in which all the projects assigned to a employee will be consolidated separated by a comma. Something like in the below table.
| Employee ID | A | B | C | D | E | F | Employee Projects |
| 1 | Yes | Yes | | | | | A,B |
| 2 | | | Yes | Yes | | | C,D |
| 3 | Yes | | | Yes | | Yes | A,D,F |
| 4 | | | | Yes | | | D |
| 5 | | | | | Yes | | E |
Can someone please help on this.
TIA !
Rishi