delete row based cell value

brundag5

New Member
Joined
Jan 23, 2014
Messages
17
Hello,

I have a spreadsheet with data in column A. Rows 1 to 16 are filled with header information and a linest function. Since the linest function does not exclude hidden cells I need a macro that will delete the row if the cell value is less than my input criteria from F1 and also if the value is greater than the value in F2.

I have tried the below code (butchered from another site) but 1 it is slow (not really a problem) and 2 on the second pass it deletes the data in rows 1 to 16. If anyone can help with this task I would very much appreciate it.

Thanks,
Craig

Code:
Sub del()
    ' Turn off screen updating.3
Application.ScreenUpdating = False
Dim LR As Long, i As Long, j As Long, LR2 As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = LR To 1 Step -1
    If Range("A" & i).Value <= Range("F1") Then Rows(i).EntireRow.Delete
    Next i
LR2 = Range("A" & Rows.Count).End(xlUp).Row
For j = LR2 To 1 Step -1
    If Range("A" & j).Value >= Range("F2") Then Rows(j).EntireRow.Delete
Next j
End Sub
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Your current code looks at col A cells from A1 to the last filled cell in col A, and it deletes entire rows if they meet the criteria in cells F1 or F2. This risks deleting the criteria cells. Are you ok with just deleting Col A cells rather than the entire rows for those cells?
 
Upvote 0
I need to delete the entire row because other columns contain data used in the linest calculation. Thanks for your reply.
 
Upvote 0
Do those other columns include col F? If yes, then do cells A1 and A2 contain numbers or do they hold text? If text, the code can be written to avoid deleting your criteria cells.
 
Last edited:
Upvote 0
After a more research I discovered that that I could specify the start row for the cod (in this case row 3). This seems to work but runs pretty slow. Maybe this is normal? Can this be cleaned up or is this the best way to do it?
@JoeMo No, column F is only holds the criteria for deletion. A1 and A2 is a gap created so that I don't delete the information in F1 / F2.

Code:
Sub del()
    ' Turn off screen updating.3
Application.ScreenUpdating = False
Dim LR As Long, i As Long, j As Long, LR2 As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = LR To 3 Step -1
    If Range("A" & i).Value <= Range("F1") Then Rows(i).EntireRow.Delete
    Next i
LR2 = Range("A" & Rows.Count).End(xlUp).Row
For j = LR2 To 3 Step -1
    If Range("A" & j).Value >= Range("F2") Then Rows(j).EntireRow.Delete
Next j
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,905
Messages
6,175,297
Members
452,633
Latest member
DougMo

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