E
ellebelle
I would like to colour code all the cells in my spreadsheet based on whether
they contain a formula or not.
is this possible?
they contain a formula or not.
is this possible?
Bill Pfister said:Public Function IsConstant()
If (Len(Application.Caller.Value) = 0) Then
IsConstant = False
Else
IsConstant = Not (Application.Caller.HasFormula)
End If
End Function