I am trying to find a way to format data faster in Alteryx with airline codes.
Here is a sample of my data set:
| OutBound | InBound |
| | DAL |
| HOU | MDW |
| FFL | |
| | |
| | |
I need to be able to make the inbound stations the outbound stations to show a complete flight path. I basically need the data to end of looking like this:
| OutBound | InBound |
| | DAL |
| DAL | HOU |
| HOU | MDW |
| MDW | FFL |
| FFL | |
I have a data set of over 10,000 records. What would be the fastest way in Alteryx to do this?