tri_p
Assuming the numbers are in Column A, run this macro.
Sub InsertRow_At_Change()
Dim i As Long
With Application
.Calculation = xlManual
.ScreenUpdating = False
End With
For i = Cells(Rows.Count, 1).End(xlUp).Row To 2 Step -1
If Cells(i - 1, 1) <> Cells(i, 1) Then _
Cells(i, 1).Resize(1, 1).EntireRow.Insert
Next i
With Application
.Calculation = xlAutomatic
.ScreenUpdating = True
End With
End Sub
For column C.........
For i = Cells(Rows.Count, 3).End(xlUp).Row To 2 Step -1
If Cells(i - 1, 3) <> Cells(i, 3) Then _
Gord Dibben Excel MVP
>Is there a function that will add an entire row after a unspecified group of
>number.
[quoted text clipped - 6 lines]
>
>Thanks
tri_p - 30 Sep 2005 20:01 GMT
gord..you da man! That worked AWESOME!!
> tri_p
>
[quoted text clipped - 33 lines]
> >
> >Thanks
Gord Dibben - 30 Sep 2005 22:12 GMT
Aw shucks<g>
Thanks for the feedback.
Gord
>gord..you da man! That worked AWESOME!!
>
[quoted text clipped - 35 lines]
>> >
>> >Thanks