Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm trying to select every other row of data (2,4,6,8, etc) and move
these to a new column. What is the simplest and quickest way of doing this? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I use an additional column.
I put A in row 1 and B in row 2 I select the cells in x1:X2 (say) and then copy down as far as I need Then I apply data|filter|autofilter show only the A's (or show only the B's) and copy the visible rows and paste to the new worksheet. wrote: I'm trying to select every other row of data (2,4,6,8, etc) and move these to a new column. What is the simplest and quickest way of doing this? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
One simply way; For i=2 to 100 step 2 Cells(i,"C")=Cells(i,"A") Next i will move (put) data from A to C for rows 2 to 100 incrementing by 2 HTH " wrote: I'm trying to select every other row of data (2,4,6,8, etc) and move these to a new column. What is the simplest and quickest way of doing this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to select data in non adjacent rows of a column automatically | Excel Discussion (Misc queries) | |||
Move Column data to rows | Excel Programming | |||
In Excel: select the last 20 rows of data in a column | Excel Worksheet Functions | |||
Need a macro to move data from column into rows | Excel Programming | |||
Move data from different columns into one column, but different rows. | Excel Programming |