Delete row in a range
Closed
Aldo
-
Aug 17, 2008 at 04:05 AM
aquarelle Posts 7140 Registration date Saturday April 7, 2007 Status Moderator Last seen March 25, 2024 - Aug 17, 2008 at 10:17 AM
aquarelle Posts 7140 Registration date Saturday April 7, 2007 Status Moderator Last seen March 25, 2024 - Aug 17, 2008 at 10:17 AM
Related:
- Delete row in a range
- How to delete a row in a table in word - Guide
- Saints row 2 cheats - Guide
- Delete my whatsapp account without app - Guide
- How to delete whatsapp account without phone - Guide
- How to delete snapchat account - 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
7140
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
March 25, 2024
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