Delete row above if partial match VBA

pook_666

Board Regular
Joined
Aug 16, 2018
Messages
94
Hi magicians,

Not sure if this can be done, but worth me asking!

I have the below table that can change in length (but never width). I want VBA to delete the row above if columns A, D, E + F match. (it's part of a wider VBA)

For example, the below I would want to delete row 8.

Is this at all possible? I was thinking of adding =A2&D2&E2&F2 in cell G2 then autofilter down then do a comparison to delete the row above if matches?

Any help greatly appreciated!


1619149767923.png
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try:

VBA Code:
Sub Remove()

Dim sht As Worksheet
Dim LastRow As Long
Dim RowNum As Long

Set sht = ActiveSheet

LastRow = sht.Cells(sht.Rows.Count, "A").End(xlUp).Row

RowNum = 2

sht.Range("G2").FormulaR1C1 = _
        "=COUNTIFS(C[-6],RC[-6],C[-3],RC[-3],C[-2],RC[-2],C[-1],RC[-1])"
sht.Range("G2").Copy sht.Range("G2:G" & LastRow)

Do Until RowNum = LastRow
    If sht.Cells(RowNum, 7) > 1 Then
    sht.Rows(RowNum).EntireRow.Delete
    RowNum = RowNum - 1
    End If
RowNum = RowNum + 1
Loop


End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,093
Latest member
dbomb1414

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