Thread
:
Is Cell a formula or a value
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
Posts: 11,058
Is Cell a formula or a value
Use this tiny UDF:
Public Function isformula(r As Range) As Boolean
isformula = r.HasFormula
End Function
So
=isformula(A1)
will display TRUE if A1 contains a formula, otherwise FALSE
--
Gary''s Student - gsnu200799
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student