Delete all rows with dates in "Sheet 1", column C that are prior to the date in last row of "Sheet 2", column C

VBAProIWish

Well-known Member
Joined
Jul 6, 2009
Messages
1,027
Office Version
  1. 365
Platform
  1. Windows
Hello All,

I would like to create a macro that deletes all rows in "Sheet1", Column C that have a date prior to the date in the last cell (bottommost) in "Sheet2" Column C.

Note that I don't want a popup box asking for a date. Instead, I want the date to be based on the last cell (bottommost) in "Sheet2", Column C.


Here's the laymen's-term code version of what I need
1. Select "Sheet2"
2. Go to the last cell (row) with data in column C
3. "Remember" that date
4. Select "Sheet1"
5. Delete any rows in "Sheet 1", Column C that have a date prior to the "Remembered" date from "Sheet2", Column C

Thanks much!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Hi VBAProlWish,

Try this (initially on a copy of your data as the results cannot be undone if they're not as expected):

VBA Code:
Option Explicit
Sub Macro1()

    Dim dteDateCheck As Date
    Dim i As Long, j As Long, k As Long
    Dim rngDelete As Range
    
    Application.ScreenUpdating = False
    
    'Grab the date in the last row of Col. C in Sheet2
    k = Sheets("Sheet2").Cells(Rows.Count, "C").End(xlUp).Row
    dteDateCheck = Sheets("Sheet2").Range("C" & k)
    
    'Create a range of any row(s) in Sheet1 where the date is less than the date in the 'dtrDateCheck' variable
    j = 2 'Starting row number in Sheet1
    k = Sheets("Sheet1").Cells(Rows.Count, "C").End(xlUp).Row
    For i = j To k
        If CDate(Sheets("Sheet1").Range("C" & i)) < CDate(dteDateCheck) Then
            If rngDelete Is Nothing Then
                Set rngDelete = Sheets("Sheet1").Range("C" & i)
            Else
                Set rngDelete = Union(rngDelete, Sheets("Sheet1").Range("C" & i))
            End If
        End If
    Next i
    
    'If the 'rngDelete' range has been set, then...
    If Not rngDelete Is Nothing Then
        '...delete the rows from it
        rngDelete.EntireRow.Delete
    End If
    
    Application.ScreenUpdating = True

End Sub

Regards,

Robert
 
Upvote 1
Solution
Thanks much Robert!
I only had to add an "=" next to the "<" and it works perfectly!
 
Upvote 0
Thanks much Robert!
You're welcome :)

I only had to add an "=" next to the "<" and it works perfectly!
This will delete dates equal to or less than the date in the last row of Col. C of Sheet2. You said "Delete any rows in "Sheet 1", Column C that have a date prior to the "Remembered" date from "Sheet2", Column C" :confused:
If though it's working as expected that's great (y)
 
Upvote 0
Ohhh, you are absolutely right! Excel is very specific which is what I love about it.
Your grade went from a 99.9 to a 100! :)

Thanks again!
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

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