• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Rows to Columns

mithil1

Member
How to convert the below information in a tabular format, i.e each line of row should be a separate column. There is a blank row after each set i.e. (Name, Classroom, Location, Age)

Name
Classroom
Location
Age

Its not 1 but probabably total records of 1000 children.
 
Hi, mithil1!

In a new worksheet, in A1:
=INDICE($A:$A;(FILA()-1)*5+RESIDUO(COLUMNA();5);1) -----> in English: =INDEX($A:$A,(ROW()-1)*5+MOD(COLUMN(),5),1)

Copy across to D1 and down as required.

Regards!
 
Hi,
something like this ?
See attached
 

Attachments

  • transpose col to row.xlsb
    25.7 KB · Views: 14
Hi, mithil1!

In a new worksheet, in A1:
=INDICE($A:$A;(FILA()-1)*5+RESIDUO(COLUMNA();5);1) -----> in English: =INDEX($A:$A,(ROW()-1)*5+MOD(COLUMN(),5),1)

Copy across to D1 and down as required.

Regards!

Sir jb7 its not working out.
 
Hi, mithil1!
Just missing worksheet qualification (in bold red):
=INDICE(Hoja1!$A:$A;(FILA()-1)*5+RESIDUO(COLUMNA();5);1) -----> in English: =INDEX(Hoja1!$A:$A,(ROW()-1)*5+MOD(COLUMN(),5),1)
Proceed as described above.
Regards!
 
Back
Top