J
Jim May
With the following in a standard module:
Function IsFormula(cell As Range) As Boolean
IsFormula = cell.HasFormula
End Function
In cell A4 of sheet1 there is a formula = Sum(A1:A3)
In cell B4 I have =IsFormula(A4) -->> Displaying #Value?
I've search google, etc..
CRAP!!
Function IsFormula(cell As Range) As Boolean
IsFormula = cell.HasFormula
End Function
In cell A4 of sheet1 there is a formula = Sum(A1:A3)
In cell B4 I have =IsFormula(A4) -->> Displaying #Value?
I've search google, etc..
CRAP!!