Hi everyone!
I hope you get a nice day today.
I post this question for solving problems what I faced.
When importing duplicated column in alteryx, sequence numbers are automatically allocated.
For example
in excel
in Alteryx
It doesn't matter when I just use those format, but if I use 'transpose' component duplicate column become completely different data. I want to recognize two headers with the same name as homogeneous data, is there any solution?
Output
| | Name | Value |
| 1 | John | A |
| 2 | John | B |
| 3 | John | C |
| 4 | John2 | D |
| 5 | John2 | E |
| 6 | John2 | F |
Target output
| | Name | Value |
| 1 | John | A |
| 2 | John | B |
| 3 | John | C |
| 4 | John | D |
| 5 | John | E |
| 6 | John | F |