I have 4 columns named as A,B,C,D. have one empty row value in one column and on some of the columns I have 2 or 3 empty values. So the thing is the empty row above the cell value "Remain" has to be retained and all the other empty row values has to be removed from all the columns.
Please help me on this
| INPUT |
| A | B | C | D |
| AA | ko | QW | MH |
| | kl | | NB |
| CD | | DF | VG |
| GB | jn | GV | |
| HJ | po | BH | YT |
| | | | |
| Remain | Remain | Remain | Remain |
| OUTPUT |
| A | B | C | D |
| AA | ko | QW | MH |
| CD | kl | DF | NB |
| GB | jn | GV | VG |
| HJ | po | BH | YT |
| | | | |
| Remain | Remain | Remain | Remain |