VBA code required to delete rows with future dates - Urgent

exceluser9

Active Member
Joined
Jun 27, 2015
Messages
388
Hi Team,

I have a data column J and K with formula =IFERROR(IF(G3<>"",WORKDAY(G3,3),""),"") in column J and =IFERROR(IF(H3<>"",WORKDAY(J3,2),""),"") in column K.

I need a vba code to delete the entire row if column "J" has future date, it should retain current date and past date.

And it should also delete entire row if column "K" has a future date (Retain if it has todays date & past date) only if column "H" contains today's date or past date.

If column J & K is blank please retain record.

Column GColumn H Column JColumn K
06-08-201908-08-2019 09/08/201913/08/2019
05-08-201907-08-2019 08/08/201912/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019
07-08-2019 12/08/2019

<colgroup><col><col span="2"><col span="2"></colgroup><tbody>
</tbody>
 
Yes same workbook.


Below code works absolutely but only change i require is it should accept any workbook name.

Sub DeleteRowBasedOnDateRange()


Dim spem As Workbook
Dim ws As Worksheet
Dim N As Long, I As Long


Set spem = Excel.Workbooks("Tes.xlsm")
Set ws = spem.Worksheets("Sheet1")


N = ws.Cells(ws.Rows.Count, "K").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "K").Value > Date Then
ws.Rows(I).Delete
End If
Next I




Set spem = Excel.Workbooks("Tes.xlsm")
Set ws = spem.Worksheets("Sheet1")


N = ws.Cells(ws.Rows.Count, "L").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "L").Value > Date Then
ws.Rows(I).Delete
End If
Next I


End Sub
 
Upvote 0

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
If the code exists in the same workbook as the rows being deleted, then you don't need the name of the workbook, you can just use ThisWorkbook.
If the code is in a different workbook then you could use ActiveWorkbook, but that can be dangerous if the wrong workbook is active when you run the code.

If you don't want to use either of those options, how would you decide what the workbook name is?
 
Upvote 0
The code should work even if user changes the workbook name. Currently its is Tes and it should work even if workbook name is changed to Test
 
Upvote 0
Hi Fluff,

Below code works fine but can the deletion happen from row 3?

Sub DeleteRowBasedOnDateRange()


Dim spem As Workbook
Dim ws As Worksheet
Dim N As Long, I As Long


Set spem = Excel.Workbooks("Tes.xlsm")
Set ws = spem.Worksheets("Test")


N = ws.Cells(ws.Rows.Count, "J").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "J").Value > Date Then
ws.Rows(I).Delete
End If
Next I




Set spem = Excel.Workbooks("Tes.xlsm")
Set ws = spem.Worksheets("Test")


N = ws.Cells(ws.Rows.Count, "K").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "K").Value > Date Then
ws.Rows(I).Delete
End If
Next I


End Sub
 
Last edited:
Upvote 0
Is the code in the Tes.xlsm workbook?
 
Upvote 0
In that case you can use
Code:
Sub DeleteRowBasedOnDateRange()
Dim ws As Worksheet
Dim N As Long, I As Long


Set ws = ThisWorkbook.Worksheets("Test")


N = ws.Cells(ws.Rows.Count, "J").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "J").Value > Date Then
ws.Rows(I).Delete
End If
Next I

N = ws.Cells(ws.Rows.Count, "K").End(xlUp).Row


For I = N To 2 Step -1
If ws.Cells(I, "K").Value > Date Then
ws.Rows(I).Delete
End If
Next I


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,899
Messages
6,122,155
Members
449,068
Latest member
shiz11713

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