I have an Excel spreadsheet with repeating rows like this in a two column format:
ID 123 Name xyx Location dfff custom sdfd ID 124 Name xyeeex Location dfeeff custom sdfdee
My data is consistent. Each data section contains 4 rows followed by 1 blank row. I ended up writing a macro in VB to get this done but I wonder if there is a more built-in way
I would like to get:
ID Name Location Custom 123 ... 124 ...
So each group of rows need to get into one row. Even if I can get partially into some individual row format, I can apply further formulas to get to what I want But the real issue is how to get a repeating set of group of rows into a single row.