VBA delete row above if

Sparda142

Board Regular
Joined
Dec 19, 2018
Messages
52
Hello,


Im not great at vba so im looking for some help. Im looking say if in column A, Delete the row above if date value in A1 does not match the date value in A2

a
1
8/1/2019 9:16

<tbody>
</tbody>
2
7/22/2019 21:04

<tbody>
</tbody>
3
7/22/2019 20:55

<tbody>
</tbody>
4
7/22/2019 20:55

<tbody>
</tbody>
5
6
8/1/2019 9:16

<tbody>
</tbody>
7
8/1/2019 14:02

<tbody>
</tbody>

<tbody>
</tbody>
 
any luck?

See if this macros works for you...
Code:
Sub DeleteNonMatchingDates()
  Dim R As Long, Ar As Range
  For Each Ar In Columns("A").SpecialCells(xlConstants).Areas
    For R = 2 To Ar.Count
      If Int(Ar(1)) <> Int(Ar(R)) Then Ar(R) = "#N/A"
    Next
  Next
  Columns("A").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
End Sub
 
Upvote 0

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,221,448
Messages
6,159,922
Members
451,604
Latest member
SWahl

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