Is there a way to check a range for null or zero value.
I need to update large ranges but only if there is no data or if the values are zero. I was thinking of something like:
If IsNull(Range(Cells(1,1), Cells(10,10))
or
If Sum(Range(Cells(1,1), Cells(10,10))) = 0
Any thoughts?