Insert Row At Change In Value / multiple conditions

Bamerand

Board Regular
Joined
Jan 11, 2013
Messages
62
Dear all,

This is the code I found on internet. How can I modify it so that it compares with multiple values? I.e. insert a row if there value change not only in "A" column, but also it there is a change of value in "B" column as well?

Sub InsertRowAtChangeInValue()
Dim lRow As Long
For lRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row To 2 Step -1
If Cells(lRow, "A") <> Cells(lRow - 1, "A") Then Rows(lRow).EntireRow.Insert
Next lRow
End Sub

This is how the data looks like..
A B C D E F
4 4 IV 6 1978 1
4 4 IV 6 1978 2
5 4 IV 6 1978 3
5 4 IV 6 1978 4
5 4 IV 6 1978 5
5 6 IV 6 1978 6
5 6 IV 6 1978 7
4 4 IV 6 1978 8
4 4 IV 6 1978 9

And this is how it should look like


A B C D E F
4 4 IV 6 1978 1
4 4 IV 6 1978 2

5 4 IV 6 1978 3
5 4 IV 6 1978 4
5 4 IV 6 1978 5

5 6 IV 6 1978 6
5 6 IV 6 1978 7

4 4 IV 6 1978 8
4 4 IV 6 1978 9
 
Last edited:

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Try this.
Code:
Sub InsertRowAtChangeInValue()
Dim lRow As Long

    For lRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row To 2 Step -1
        If Cells(lRow, "A") <> Cells(lRow - 1, "A") And Cells(lRow, "B") <> Cells(lRow - 1, "B") Then Rows(lRow).EntireRow.Insert
    Next lRow

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,303
Messages
6,129,984
Members
449,549
Latest member
birdguy_1930

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