excel - Converting column into rows -


i have column of dates , numbers this:

24/01/2016 1 0.123 24/01/2016 2 0.121 24/01/2016 3 0.104 24/01/2016 4 0.116 24/01/2016 5 0.091 ... 

how can transform column in excel appears in three columns such:

24/01/2016 1 0.123 24/01/2016 2 0.121 24/01/2016 3 0.104 24/01/2016 4 0.116 24/01/2016 5 0.091 ... 

you can find answer here.

in short, 1 of answers use following formula:

=indirect(address((row($a1)-1)*3+column(a1),1)) 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -