Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Lets say we have in column B:
Mike 1 John 23 David 15 Nigel 17 Trevor 19 George 31 and we want in columns A&B: 1 Mike 23 John 15 David 17 Nigel 19 Trevor 31 George Then just run: Sub movem() n = Cells(Rows.Count, 2).End(xlUp).Row k = 1 For i = 2 To n Step 2 Cells(k, 1).Value = Cells(i, 2).Value k = k + 1 Next For i = n To 2 Step -2 Cells(i, 2).Delete Shift:=xlUp Next End Sub -- Gary''s Student - gsnu200751 "rgawlik" wrote: I have Column b with Name in one row and number in 2nd row want to move all numbers to Column a and leave name in Column b without having to move each one seperate. 1500 records. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to leave column 1 and move all other colums up or down rows. | Excel Discussion (Misc queries) | |||
name,address in same column different rows. How move to columns | Charts and Charting in Excel | |||
how to move the cursor to column A after entering data column F | New Users to Excel | |||
move contents of column C based on criteria related to column A | Excel Discussion (Misc queries) | |||
Move a Column to rows | Excel Discussion (Misc queries) |