Hi all, I have collect a raw data file.
Below is the example of the data
| a | b | c | d | e | f |
| apple | 12 | | | | |
| | | chicago | 9 | | |
| | | | | 756 | US |
| banana | 21 | | | | |
| | | New York | 20 | | |
| | | | | 891 | Canada |
I want to merge every 3 rows into one row:
| a | b | c | d | e | f |
| apple | 12 | chicago | 9 | 756 | US |
| banana | 21 | New York | 20 | 891 | Canada |
I am not sure if this is possible. Can anyone give me some suggestion? Thank you.