• 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.

Moving data in one cell to column

virtualized

New Member
Hi Everyone


I have some data in a cell in the form:

0 0 0 0 0 0 0 0 0 0 9 0 0


I want to move it to a column and each number goes to exactly one cell of the column.The final output should be like this:

0

0

0

0

0

0

0

0

0

0

9

0

0


The minimum number in my data is 0 and the Maximum is 100.


I have tried to do it using Transpose in Paste Special but it did not work.


Any help in this regard is highly appreciated.


Best Regards
 
Put this below the cell with the number

=MID($A$1,(ROW()-1)*2-1,1)

Change $A$1 to be the cell with the number

Copy down
 
Back
Top