Any thoughts on how to prep my data to go from
| Level 1 | Level 2 | Level 3 | Level 4 |
| [null] | [null] | Steve | Rob |
| Steve | Mike | John | Bert |
| [null] | Steve | Rob | Jim |
| [null] | [null] | Steve | Al |
| [null] | [null] | [null] | Steve |
to
| Level 1 | Level 2 | Level 3 | Level 4 |
| Steve | Rob | [null] | [null] |
| Steve | Mike | John | Bert |
| Steve | Rob | Jim | [null] |
| Steve | Al | [null] | [null] |
| Steve | [null] | [null] | [null] |
My thoughts maybe a formula to see how many cells are null left of Steve and then move all the names in the row over by that number? The logic makes sense in my mind but no idea where to start with Alteryx. Appreciate any thoughts and insights!