Hello everyone,
my first post here, be kind.
I started using Alteryx and am pretty amazed by it. But I'm starting to get to more complex data manipulations I think and need some help.
I have a table like this (just an example, the actual table is much bigger):
| ID | Value1 | Value2 | Value3 | Value4 |
| 3838473 | [null] | Yes | [null] | Yes |
| 2736217 | Yes | [null] | Yes | Yes |
EDIT: Outcome should basicall be:
| ID | Value1 | Value2 | Value3 | Value4 |
| 3838473 | Yes | Yes | [null] | [null] |
| 2736217 | Yes | Yes | Yes | [null] |
The number of Value columns is variable (Value1 to ValueN basically) and I need to shift all "Yes" values back to back next to the ID column, so I can join them with another table containg an ID value. I am too inexperienced to find a solution to this and I'm not familiar enough with formulas. Does anyone have an idea that could solve this?
Thanks so much!