Aug 15 2022 10:32 PM
Hello,
I’m trying to achieve the following -
Take the data from a column and transpose it across cells with predefined headings, missing a consistent number of cells each time.
This is how the data starts
This is what i'm trying to achieve
I've researched transposing and indexing but can't find a solution to what i'm trying to achieve.
Many thanks for any help
Lou
Aug 15 2022 11:35 PM
If you want all the data, enter the following formula in G2, then fill to the right:
=INDEX($A:$C,QUOTIENT(COLUMN()-7,3)+2,MOD(COLUMN()-7,3)+1)
If you want only the names, with empty cells in between:
=IF(MOD(COLUMN(),3)=1,INDEX($A:$A,QUOTIENT(COLUMN()-7,3)+2),"")
Aug 17 2022 12:10 AM