Macro to Delete Zero values from Row 2 onwards on JNL Upload BMT3 and 4 in Col J

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,570
Office Version
  1. 2021
Platform
  1. Windows
I have tried to write code to Delete Zero values from Row 2 onwards on sheets JNL Upload BMT3 and 4 in Col J

I do not know how to continue from code below


Code:
 lr = Range("A" & Rows.Count).End(xlUp).Row



See full code below
Code:
 Sub Delete_Zeroes_UoloadFiles()
  Dim lr As Long, i As Long
       Dim arr, Wks
        arr = Array("JNL Upload BMT", "JNL Upload BMR")
    For Each Wks In arr
 
  lr = Range("A" & Rows.Count).End(xlUp).Row
  Debug.Print lr
  For i = lr To 1 Step -1
    If Range("K" & i).Value = 0 And Not IsEmpty(Range("K" & i)) Then _
      Range("K" & i).EntireRow.Delete
  Next i
End Sub
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
If you use an array to keep those worksheet Names, those are recognized as just a string.
So you need to use those in the Worksheet object as follows.

VBA Code:
Sub Delete_Zeroes_UoloadFiles()
    Dim lr As Long, i As Long
    Dim arr, Wks
    arr = Array("JNL Upload BMT", "JNL Upload BMR")
    For Each Wks In arr
        With Worksheets(Wks)
            lr = .Range("A" & Rows.Count).End(xlUp).Row
            Debug.Print lr
            For i = lr To 1 Step -1
                If .Range("K" & i).Value = 0 And Not IsEmpty(.Range("K" & i)) Then _
                   .Range("K" & i).EntireRow.Delete
            Next i
        End With
    Next
End Sub
 
Upvote 0
Solution
Many thanks Colo. Code works perfectly
 
Upvote 0

Forum statistics

Threads
1,216,030
Messages
6,128,408
Members
449,448
Latest member
Andrew Slatter

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