Hello everybody,
I am quite new to Alteryx and i have a table which looks like:
| NAME | Attr1 | Attr2 | Attr3 | Attr4 | Attr5 |
| A | a | f | k | p | u |
| A | b | g | l | q | v |
| B | c | h | m | r | w |
| C | d | i | n | s | x |
| B | e | j | o | t | y |
I want to group the name so that every name is unique and all of its attributes are in the same column:
| A | B | C |
| a | c | d |
| f | h | i |
| k | m | n |
| p | r | s |
| u | w | x |
| b | e | |
| g | j | |
| l | o | |
| q | t | |
| v | y | |
I would be very happy if someone has an idea how to implement this as a worklfow in Alteryx?
Thanks in advance!