StartRow = 2
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
With Application
CurrentScreenUpdating = .ScreenUpdating
CurrentCalculate = .Calculation
CurrentEnableEvents = .EnableEvents
.ScreenUpdating = False
.Calculation = xlCalculationManual
.EnableEvents = False
End With
For X = LastRow To StartRow Step -1
If Cells(X, "A").Value Like "*#*" Then Cells(X, "A").EntireRow.Delete
Next
With Application
.ScreenUpdating = CurrentScreenUpdating
.Calculation = CurrentCalculate
.EnableEvents = CurrentEnableEvents
End With