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

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
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,215,740
Messages
6,126,582
Members
449,319
Latest member
iaincmac

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