current data:
| Column 1 | Column 2 | Column 3 | Column 4 | Column 5 | Column 6 |
| 444 | | | | | |
| 444 | | 333 | | | |
| 444 | | 333 | 555 | | |
| 444 | | 333 | 555 | 222 | |
| 444 | | 333 | 555 | 222 | 111 |
how do i get my table to look like this? i want column 6 to have filled with data, but i want it to fill from one column to the left first, and then if that is empty, go one more to the left, and so forth until it is no longer blank.
| Column 1 | Column 2 | Column 3 | Column 4 | Column 5 | Column 6 |
| | | | | | 444 |
| | | | | | 333 |
| | | | | | 555 |
| | | | | | 222 |
| | | | | | 111 |