Thread
:
Deleting #N/A
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
Deleting #N/A
Sub inams()
For Each r In Selection
If r.Text = "#N/A" Then
r.Clear
End If
Next
End Sub
--
Gary''s Student - gsnu200738
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student