Macro to delete rows where text starts with a ~

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have the following sample data below

I have written code to delete the rows where the data contains a ~, but the code does not delete any rows where the txt contains a ~



Book1
A
1M_BR1.xlsm
2~$M_BR1.xlsm
3M_BR2.xlsm
4~$M_BR2.xlsm
Workspace




Code:
 Sub Del_Unwanted()
Sheets(1).Select

Dim LR As Long, i As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = LR To 1 Step -1
 If Range("A" & i).Value = "~" Then Range("A" & i).EntireRow.Delete
Next i
End Sub


It would be appreciated if someone could amend my code
 
Last edited:

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Try
Code:
 If Left(Range("A" & i).Value, 1) = "~" Then Range("A" & i).EntireRow.Delete
 
Upvote 0
Thanks for the help. Code works perfectly
 
Upvote 0
Code:
 Sub Del_Unwanted()
Sheets(1).Select

Dim LR As Long, i As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = LR To 1 Step -1
 If Range("A" & i).Value = "~" Then Range("A" & i).EntireRow.Delete
Next i
End Sub
Assuming the values in Column A as constants (that is, not formulas), then here is another way to write your code (it does not use a loop)...
Code:
[table="width: 500"]
[tr]
	[td]Sub Del_Unwanted()
  On Error GoTo NoRowsToDelete
  With Range("A1", Cells(Rows.Count, "A").End(xlUp))
    .Value = Evaluate(Replace("IF(LEFT(@)=""~"",""#N/A"",IF(@="""","""",@))", "@", .Address))
    .SpecialCells(xlConstants, xlErrors).EntireRow.Delete
  End With
NoRowsToDelete:
End Sub[/td]
[/tr]
[/table]
 
Upvote 0

Forum statistics

Threads
1,214,385
Messages
6,119,205
Members
448,874
Latest member
Lancelots

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