I am inputting multiple excels at once, auto-config by position (can't auto-config by name due to irregularities in the files). While the inputs are supposedly of somewhat similar format, they're not really, so I have to standardize them. Some of my inputs look like this:
| F1 | F2 | F3 | F4 |
| George | 423242 | 12/03/2012 | |
| 1.86m | 432352 | 12/05/2020 | |
| | | | |
but on some of my inputs, for whatever reason, the data is preceded by an empty column, such as this
| F1 | F2 | F3 | F4 |
| | Mike | 423425 | 15/05/2013 |
| | 1.73m | 525623 | 30/08/2017 |
| | | | |
What kind of tool/formula/rule can I use to make sure the inputs where the entire 1st column is empty, all the other data is shifted one column to the left, so that I can unionize it with the other data and process it as 1 stream? Note that the data should only be shifted if the entirety of column F1 is empty. Not wherever a single cell of F1 is empty