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,589
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

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
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

Forum statistics

Threads
1,223,240
Messages
6,170,951
Members
452,368
Latest member
jayp2104

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