Filter and Delete Rows from dataset based on Two Criteria

PatrickW1907

New Member
Joined
Sep 3, 2022
Messages
18
Office Version
  1. 365
Platform
  1. Windows
Hi,

I haven't got any code as of yet.

I have a range of data from A:AK this updates daily where the number of rows can increase/decrease per day

I am trying to delete rows where Column P is equalled to true and column AK = Today's date (File updates daily)

If the above condition is not met I would like to do nothing and continue with next steps of code.

Does anyone have any advice for best steps of practice I am new to VBA.

Kind Regards

Patrick Wood
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Can't you just use the new FILTER function to dynamically return the records you want in another list? This requires NO VBA.
See: FILTER function - Microsoft Support
Hi Joe thanks for commenting. I've got other Macros on the go which the filtering will follow suit. The idea being I don't want the user to filter. As I am trying to clean the data set.
 
Upvote 0
Hi Joe thanks for commenting. I've got other Macros on the go which the filtering will follow suit. The idea being I don't want the user to filter. As I am trying to clean the data set.
Don't confuse the new FILTER worksheet function (new in 2019) with the old FILTER functionality that Excel has had for years.
It is a formula, so requires no user interaction! It really is very powerful, and makes things much more dynamic then they ever used to be.

If you use the TODAY() function as one of the criteria in the formula, it will ALWAYS apply the current date to the formula.
Try it and see!
 
Upvote 0
Hi Joe this isn't suiting my needs. I just need to create vba code to complete the task alongside what i am running. Thank you for the alternative method though :)
 
Upvote 0
OK, another way would be to use a loop to do that.

Just a few questions:
- Are the True entries in column P TEXT values of True, or boolean values of TRUE (boolean values are typically in all caps and centered within the cell)?
- Are the dates on column AK dates only, or are there time components also involved?
 
Upvote 0
OK, another way would be to use a loop to do that.

Just a few questions:
- Are the True entries in column P TEXT values of True, or boolean values of TRUE (boolean values are typically in all caps and centered within the cell)?
- Are the dates on column AK dates only, or are there time components also involved?
Boolean and dates only :)
 
Upvote 0
OK, this should do what you want:
VBA Code:
Sub MyDeleteRows()

    Dim lr As Long
    Dim r As Long
    
    Application.ScreenUpdating = False

'   Find last row in column P with data
    lr = Cells(Rows.Count, "P").End(xlUp).Row
    
'   Loop through all rows backwards, up to row 2
    For r = lr To 2 Step -1
'       Check values in column P and AK
        If Cells(r, "P") = True And Cells(r, "AK") = Date Then
            Rows(r).Delete
        End If
    Next r
    
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
Solution
OK, this should do what you want:
VBA Code:
Sub MyDeleteRows()

    Dim lr As Long
    Dim r As Long
   
    Application.ScreenUpdating = False

'   Find last row in column P with data
    lr = Cells(Rows.Count, "P").End(xlUp).Row
   
'   Loop through all rows backwards, up to row 2
    For r = lr To 2 Step -1
'       Check values in column P and AK
        If Cells(r, "P") = True And Cells(r, "AK") = Date Then
            Rows(r).Delete
        End If
    Next r
   
    Application.ScreenUpdating = True
   
End Sub
works a treat joe thank you !!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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