I have a data set that looks like this
| Name | Has HR | Has Ben | Has Pay |
| John | Y | N | N |
| Mike | N | Y | Y |
I can't figure out how to get a new column that lists the column names for that row where the value = "N"
For example, the result should look like this
| Name | Has HR | Has Ben | Has Pay | Missing |
| Jon | Y | N | N | Has Ben, Has Pay |
| Mike | N | Y | Y | Has HR |
I was toying with dynamic select, but couldn't quite get it.
Any help is greatly appreciated!
Thanks,
Craig