I have a spreadsheet with booking data. I want to split a row into multiple rows based on how many columns with heading "Book Time" string contains data.
Here's an example
ID | SlotNo. | Delivery Date | Booking No. | Book Time 1 | Truck Sz 1 | Book Time 2 | Truck Sz 2
1 10415 12/31/2019 10001 00:00 B'Double 00:20 Single
Output
ID | SlotNo. | Delivery Date | Booking No. | Book Time | Truck Size |
1 10415 12/31/2019 10001 00:00 B'Double
1 10415 12/31/2019 10001 00:20 Single
I have tried using the solution here Similar solution , but it seems the problem is not so similar.
I'll like to get help on split the row based on how "Book Time" Columns has data in it. There are actually up to 30 "Book Time" Columns.