View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier Roger Govier is offline
external usenet poster
 
Posts: 2,886
Default Moving cells in a column

Hi

Assuming your data is all in column A, in say C1
enter
in C1 =INDEX($A:$A,(ROW()*3)-2)
in D1 =INDEX($A:$A,(ROW()*3)-1)
in E1 =INDEX($A:$A,(ROW()*3))

Copy down until the result in C,D and E equals 0
--
Regards

Roger Govier


"CTCrow" wrote in message
...
I have some data that is all in order in a column, like this:

name 1
street 1
city 1
name 2
street 2
city 2
name 3
street 3
city 3

and i like to move the cells to look like this:
(Each in it's own cell for sorting)

name 1 street 1 city 1
name 2 street 2 city 2
name 3 street 3 city 3

without having to drag every single cell one at a time. I have over
2,500
cells and it would take too much work. My son is charging mee too much
to do
it.(i should start charging him for rent and food)

What options do i have?

all help is really apreciated.