hello guys, I need help in using Alteryx to split the data with the same codes, maybe the tool exists or I should do a macro.
the data is 10K rows looks like:
| Code | report |
| 123 | a |
| 555 | f |
| 123 | b |
| 123 | a |
| 555 | a |
| 555 | w |
| 897 | e |
| 897 | r |
| 123 | c |
| 555 | a |
| 897 | b |
I want to make an output that looks like
| Code | report |
| 123 | a |
| 123 | b |
| 123 | a |
| 123 | c |
| Code | report |
| 555 | f |
| 555 | a |
| 555 | w |
| 555 | a |
I hope this makes sense, to have separate files that have the common code.
Thanks any help is appreciated.