I have data in Google Sheets that looks like
A B1 Name: John Smith2 Email: john@smith.com3 Name: Dan Jones4 Email: dan@jones.com... many rows
which I'd like to get into this format:
A B1 Name Email2 John Smith john@smith.com3 Dan Jones dan@jones.com...
This is different from just a straight transpose because we're dealing with repeating sets of rows that need to be repeatedly transposed into columns.
What's the best, fastest way to do this?