UpTheArgyle
Board Regular
- Joined
- Jan 12, 2006
- Messages
- 179
Hi
I am trying to look at a block of cells to see if they are empty - if they are i want a value of "0" put in all the empty cells. So far i have this.....
Range("E8:K19").Select
If ActiveCell.Value = "" Then
ActiveCell.Value = "0"
End If
But all that does is place a "0" in cell E8
Any ideas?
Thanks
I am trying to look at a block of cells to see if they are empty - if they are i want a value of "0" put in all the empty cells. So far i have this.....
Range("E8:K19").Select
If ActiveCell.Value = "" Then
ActiveCell.Value = "0"
End If
But all that does is place a "0" in cell E8
Any ideas?
Thanks