Macro to delete row after certain condition found
Solved/Closed
wendelly
Posts
4
Registration date
Thursday April 3, 2014
Status
Member
Last seen
April 4, 2014
-
Apr 3, 2014 at 03:39 PM
wendelly Posts 4 Registration date Thursday April 3, 2014 Status Member Last seen April 4, 2014 - Apr 4, 2014 at 03:23 PM
wendelly Posts 4 Registration date Thursday April 3, 2014 Status Member Last seen April 4, 2014 - Apr 4, 2014 at 03:23 PM
Hello,
I am an Excel newbie; I am trying to write an Excel macro that will search a certain column to find a blank value. It would then delete the row immediately after the row that contains the blank column value, cycling through the entire file. Any help would be much appreciated, thanks.
I am an Excel newbie; I am trying to write an Excel macro that will search a certain column to find a blank value. It would then delete the row immediately after the row that contains the blank column value, cycling through the entire file. Any help would be much appreciated, thanks.
Related:
- Macro to delete row after certain condition found
- How to delete a row in a table in word - Guide
- Saints row 2 cheats - Guide
- Does instagram delete message requests after 4 weeks - Guide
- How to delete whatsapp account without login - Guide
- How to delete whatsapp account without phone - Guide
5 responses
aquarelle
Posts
7177
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
December 19, 2024
491
Apr 4, 2014 at 12:02 PM
Apr 4, 2014 at 12:02 PM
I presumed that there were titles on the Row 1, put this macro on the sheet you want to use it, in VBA project :
Regards
Public Sub DeleteRowIfCellZero_ColD() Dim x As Long Dim y As Long x = Range("D65536").End(xlUp).Row For y = x To 2 Step -1 If Cells(y, 4).Value = 0 Then Rows(y + 1).EntireRow.Delete End If Next y End Sub
Regards
aquarelle
Posts
7177
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
December 19, 2024
491
Apr 4, 2014 at 09:30 AM
Apr 4, 2014 at 09:30 AM
Hello,
Which column? Everytime the same column or not?
Regards
Which column? Everytime the same column or not?
Regards
wendelly
Posts
4
Registration date
Thursday April 3, 2014
Status
Member
Last seen
April 4, 2014
Apr 4, 2014 at 10:09 AM
Apr 4, 2014 at 10:09 AM
Hello, it would be the same column every time. Thanks.
aquarelle
Posts
7177
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
December 19, 2024
491
Apr 4, 2014 at 10:16 AM
Apr 4, 2014 at 10:16 AM
Which? A B C...?
wendelly
Posts
4
Registration date
Thursday April 3, 2014
Status
Member
Last seen
April 4, 2014
Apr 4, 2014 at 10:45 AM
Apr 4, 2014 at 10:45 AM
It would be column D.
wendelly
Posts
4
Registration date
Thursday April 3, 2014
Status
Member
Last seen
April 4, 2014
Apr 4, 2014 at 03:23 PM
Apr 4, 2014 at 03:23 PM
That worked brilliantly. Thanks.