Thread
:
NEED TO FILL BLANK CELLS IN DATA WITH TEXT STRING
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
Posts: 11,058
NEED TO FILL BLANK CELLS IN DATA WITH TEXT STRING
Try:
Sub stew()
For Each r In ActiveSheet.UsedRange
If IsEmpty(r) Then
r.Value = "xx"
End If
Next
End Sub
--
Gary''s Student - gsnu200722
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student