Delete Sat & Sun

billandrew

Well-known Member
Joined
Mar 9, 2014
Messages
743
Afternoon

Is there a more appropriate way to delete row if value is Saturday or Sunday than the following

Sub deleteSatSun()

Dim dlrow As Long, ws As Worksheet
Set ws = ActiveSheet
For dlrow = ws.Range("B" & Rows.Count).End(xlUp).Row To 2 Step -1
If ws.Range("B" & dlrow).Value = "Sunday" Then
Rows(dlrow).EntireRow.Delete
ElseIf ws.Range("B" & dlrow).Value = "Saturday" Then
Rows(dlrow).EntireRow.Delete
End If
Next dlrow
End Sub
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
billandrew,

Here are two macro examples.

Please TEST them FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

The first one will loop thru the rows in column B, from the last used row to row 2.

Code:
Sub deleteSaturdaySunday_V1()
' hiker95, 08/07/2017, ME1017934
Dim dlrow As Long, r As Long
Application.ScreenUpdating = False
With ActiveSheet
  dlrow = .Range("B" & Rows.Count).End(xlUp).Row
  For r = dlrow To 2 Step -1
    If .Range("B" & r).Value = "Sunday" Or .Range("B" & r).Value = "Saturday" Then
      .Rows(r).EntireRow.Delete
    End If
  Next r
End With
Application.ScreenUpdating = True
End Sub


The next macro will not loop thru the rows in column B, and, should be very fast:

Code:
Sub deleteSaturdaySunday_V2()
' hiker95, 08/07/2017, ME1017934
Dim Addr As String
Addr = "B2:B" & Cells(Rows.Count, "B").End(xlUp).Row
Range(Addr) = Evaluate(Replace("IF(@=""Saturday"",""#N/A"",@)", "@", Addr))
Range(Addr) = Evaluate(Replace("IF(@=""Sunday"",""#N/A"",@)", "@", Addr))
On Error GoTo NoDeletes
Columns("B").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
NoDeletes:
End Sub
 
Last edited:
Upvote 0
Both work excellent with no issues. Unfortunately I do not quite understand the second code. Takes time I guess.

Thank You as always
 
Upvote 0
billandrew,

The second one is one of the gems from/by Rick Rothstein, MrExcel MVP.

Thanks for the feedback.

You are very welcome. Glad I could help.

And, come back anytime.
 
Upvote 0

Forum statistics

Threads
1,215,488
Messages
6,125,092
Members
449,206
Latest member
ralemanygarcia

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