Thread
:
Replace blank cells with 0
View Single Post
#
1
Posted to microsoft.public.excel.programming
Patrick Molloy
external usenet poster
Posts: 1,049
Replace blank cells with 0
With Range("A1:Z1").SpecialCells(xlCellTypeBlanks)
.Value = 0
End With
"scrabtree23" wrote in message
...
I need a code that will search a range (let's say A1:Z1) and will replace
any
blank cells with a zero (0).
Reply With Quote
Patrick Molloy
View Public Profile
Find all posts by Patrick Molloy