Hi Everyone,
I am building an Alteryx workflow but i get stuck, looking for a solution or any possible workaround.
The below is the dataset.
| Field_1 | Field_2 | Field_3 | Field_4 |
| Text1 | Text1 | Text1 | Text1 |
| Text2 | Text2 | Text2 | Text2 |
| Text3 | Text3 | Text3 | Text3 |
| Text4 | Text4 | Text4 | Text4 |
| AAA | 111 | 222 | 333 |
| AAA | 222 | 111 | 333 |
| BBB | 444 | 555 | 666 |
| BBB | 666 | 444 | 555 |
| CCC | 777 | 888 | 999 |
| CCC | 888 | 777 | 999 |
I need to output the data in a different tab so i take Field_1 as file/table name.
But it also create 4 tabs "Text1" Text2" Text3" Text4" and i want all text data will appear in every tab
My expected result would be following:
Tab name: AAA
| Field_1 | Field_2 | Field_3 | Field_4 |
| Text1 | Text1 | Text1 | Text1 |
| Text2 | Text2 | Text2 | Text2 |
| Text3 | Text3 | Text3 | Text3 |
| Text4 | Text4 | Text4 | Text4 |
| AAA | 111 | 222 | 333 |
| AAA | 222 | 111 | 333 |
Tab name: BBB
| Field_1 | Field_2 | Field_3 | Field_4 |
| Text1 | Text1 | Text1 | Text1 |
| Text2 | Text2 | Text2 | Text2 |
| Text3 | Text3 | Text3 | Text3 |
| Text4 | Text4 | Text4 | Text4 |
| BBB | 444 | 555 | 666 |
| BBB | 666 | 444 | 555 |
Tab name: CCC
| Field_1 | Field_2 | Field_3 | Field_4 |
| Text1 | Text1 | Text1 | Text1 |
| Text2 | Text2 | Text2 | Text2 |
| Text3 | Text3 | Text3 | Text3 |
| Text4 | Text4 | Text4 | Text4 |
| CCC | 777 | 888 | 999 |
| CCC | 888 | 777 | 999 |
Is there any way i can do this?
Thanks
Will