Can I amend a macro to meet specific data needs

ghrek

Active Member
Joined
Jul 29, 2005
Messages
426
Hi

I have the macro shown below that adds a row when the word "ticket control number" appears in column S.

What im trying to do is amend it so that at every change of number in column "X" it adds a row instead.

Any Ideas?

Thanks

Sub ControlRow()
Dim lastRw As Long, nxtRw As Long

'Determine last row with data in Column S
lastRw = Cells(Rows.Count, "S").End(xlUp).Row

'Check each Cell in S, Insert row after each Ticket Control No.
For nxtRw = lastRw To 1 Step -1
If Cells(nxtRw, "S") = "Ticket Control No." Then
Rows(nxtRw + 1).EntireRow.Insert
End If
Next
'
End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try:
Code:
Sub ControlRow()
    Application.ScreenUpdating = False
    Dim lastRw As Long, nxtRw As Long
    lastRw = Cells(Rows.Count, "X").End(xlUp).Row
    For nxtRw = lastRw To 2 Step -1
        If Cells(nxtRw, "X") <> Cells(nxtRw - 1, "X") Then
            Rows(nxtRw).EntireRow.Insert
        End If
    Next nxtRw
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
You are very welcome. :)
 
Upvote 0

Forum statistics

Threads
1,215,463
Messages
6,124,963
Members
449,200
Latest member
indiansth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top