Dim rg As Range, myRange As Range
Set myRange = Sheets(1).Range("A2", "B4:B12", "C4:C12")
For Each rg In myRange.Cells
rg = Null
Next
When I set the range "B4:B12", "C4:C12", the function doesn't work. If I remove "C4:C12", then it works.
What's the problem?