Hi Team, I need help with an Alteryx workflow for the following input and output as listed.
Input:
| COL1 | COL2 | COL3 | COL4 |
| 235 | 636 | 235 | 365 |
| 652 | 896 | 456 | 326 |
| 896 | 999 | 777 | 555 |
| 333 | 555 | 333 | 44 |
Output: (can be any order)
| 235 |
| 636 |
| 235 |
| 365 |
| 333 |
| 555 |
| 333 |
| 44 |
| 652 |
| 896 |
| 456 |
| 326 |
| 896 |
| 999 |
| 777 |
| 555 |
Solved! Go to Solution.
Hi @ANANDPRABHU
You can use Transpose tool to convert columns to rows.
Workflow:
Hope this helps : )
Thanks All, it worked.
