Home |
Search |
Today's Posts |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Tom. The OP did say insert row so the error was mine!
"Tom Ogilvy" wrote: if you only want to insert a blank cell in column A (or whatever column you adjust it to operate on), then you have a solution. I f you actually want to insert a blank row, change Cells(r,1).Insert Shift:=xldown to rows(r).Insert -- Regards, Tom Ogilvy "Toppers" wrote in message ... Erin, Try this (on some test data first!) Sub InsertRows() Dim lastrow as long, r as long lastrow = Cells(Rows.Count, "A").End(xlUp).Row For r = lastrow To 2 Step -1 If Cells(r, 1) < Cells(r - 1, 1) Then Cells(r, 1).Insert shift:=xlDown End If Next r End Sub HTH " wrote: Hello everyone, i am new to vba and excel. In column A i have 47000 rows, i want to loop through this column and if cell1 does not equal cell2 i want to add a row between cell1 and cell2. I cannot figure out how to do this.. can anyone help me please??/ Thanks, Erin |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Delete records when certain records have duplicate column data | New Users to Excel | |||
Advancing outer Loop Based on criteria of inner loop | Excel Programming | |||
Loop Function unable to loop | Excel Programming | |||
Problem adding charts using Do-Loop Until loop | Excel Programming | |||
HELP!!!! Can't stop a loop (NOT an infinite loop) | Excel Programming |