Hi,
I have the data in the following format.
| A | B |
| abc | |
| | xyz |
| two | one |
| | three |
| | |
| four | five |
How can i get the output in the below format?
| A | B |
| abc | xyz |
| two | one |
| four | three |
| | five |
I tried using the Summarize function and get all the records as a group but unable to remove the empty rows and move it on the top.
ANy help would be appreciated