With several ranges… A1:A6, A8:A12, A22:A26 and so on… if I want to use VBA to test their current value and if they are not blank to insert 0 a value. In other words, this is a planning worksheet and I want to be able ‘clear’ it and start over by resetting a lot of cells to zero.
cells outside that range should be blank.
I am thinking that if the all inclusive range is A1:A110 then I could test each one for blank and if not blank insert zero as follows:
Sub Resetvalues()
ActiveSheet.Unprotect
Dim wsh As Worksheet
Dim btn As Shape
Dim i As Long
Set wsh = Worksheets(“EVENT-Work”)
Set btn = wsh.Shapes(“Rounded Rectangle 2”)
For i = 1 To 110
If IsEmpty(wsh.Range(“A” & i)) Then Next i
Value = “0”
Next i
End If
Application.ScreenUpdating = True
Range(“h3”).Select
ActiveSheet.Protect
End Sub
But this is not working for me as I get a Next without For error. Is there a VBA equivalent of ISBLANK()?
Also, if I wanted to apply the same thing to the same cells in columns H & M, could I do that all in the same IF Statement or must I do a separate IF for each column?