Hi everyone,
I hope anyone can help me.
I have a table with so many columns, and each column has some empty cell. I would like to delete the empty cells.
Below an example of what I desire:
Original table:
| Field 1 | Field 2 | Field 3 | Field 4 |
| 123 | | | |
| 589 | | 896 | |
| | 583 | | |
| 245 | | | 245 |
| | | 245 | |
| 2130 | | | |
| 578 | | | 109 |
Desired outcome:
| Field 1 | Field 2 | Field 3 | Field 4 |
| 123 | 583 | 896 | 245 |
| 589 | | 245 | 109 |
| 245 | | | |
| 2130 | | | |
| 578 | | | |
I hope anyone can help me.
Many thanks,
Wilson