Quote:
Originally Posted by NoSparks
Maybe something along the lines of this...
Code:
With Sheets("Sheet1")
'get last row of col A
lr = .Cells(Rows.Count, "A").End(xlUp).Row
'move second value
For i = 1 To lr Step 3
.Cells(i, 2).Value = .Cells(i + 1, 1).Value
Next i
'remove rows where B is blank
.Range("B1:B" & lr).SpecialCells(xlBlanks).EntireRow.Delete
End With
|
Hi..is there something missing, because I can't get the macro to run.