Delete row in a range
Closed
Aldo
-
Aug 17, 2008 at 04:05 AM
aquarelle Posts 5961 Registration date Saturday April 7, 2007 Status Moderator Last seen February 14, 2026 - Aug 17, 2008 at 10:17 AM
aquarelle Posts 5961 Registration date Saturday April 7, 2007 Status Moderator Last seen February 14, 2026 - Aug 17, 2008 at 10:17 AM
Related:
- Delete row in a range
- How to delete a row in word - Guide
- Saints row 2 cheats - Guide
- Sed delete line - Guide
- How to increase wifi range from router settings - Guide
- Vb net find last row in excel sheet - Guide
2 responses
jamesyap34
Posts
8
Registration date
Thursday May 1, 2008
Status
Member
Last seen
October 15, 2008
Aug 17, 2008 at 09:58 AM
Aug 17, 2008 at 09:58 AM
hello,
couldnt you select the fields and just press on delete on your keyboard?
couldnt you select the fields and just press on delete on your keyboard?
aquarelle
Posts
5961
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
February 14, 2026
491
Aug 17, 2008 at 10:17 AM
Aug 17, 2008 at 10:17 AM
Hello,
Maybe, you can adapt this macro :
Best regards
Maybe, you can adapt this macro :
'To delete empty rows in active worksheet
Sub DeleteEmptyRow()
LastRow = ActiveSheet.UsedRange.Rows.Count
Application.ScreenUpdating = False
For x = LastRow To 1 Step -1
If Application.CountA(Rows(x)) = 0 Then Rows(x).Delete
Next x
End Sub
Best regards