Macros to Delete Rows in Excel 2007
Solved/Closed
Shiva
-
Mar 22, 2011 at 07:20 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 22, 2011 at 10:58 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 22, 2011 at 10:58 AM
Related:
- Macros to Delete Rows in Excel 2007
- Save as pdf office 2007 - Download - Other
- Macros in excel download - Download - Spreadsheets
- Number to words in excel - Guide
- How to delete whatsapp account without login - Guide
- How to take screenshot in excel - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
552
Mar 22, 2011 at 10:58 AM
Mar 22, 2011 at 10:58 AM
Hi Shiva,
Try this code:
Do let me know how this works out for you and if any adjustments are needed.
Best regards,
Trowa
Try this code:
Sub DeleteRows() lRow = Range("AJ" & Rows.Count).End(xlUp).Row Set MR = Range("AJ1:AJ" & lRow) For Each cell In MR If cell.Value < 1000 And cell.Value <> "" Then cell.EntireRow.Delete Next End Sub
Do let me know how this works out for you and if any adjustments are needed.
Best regards,
Trowa