A function to indicate whether a cell contains formula or value?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a function to return logical indication of whether a cell contains
formula or value? Need it for conditional cell formating.
 
With a User Defined Function such as

Function IsFormula(cell)
Application.Volatile
IsFormula = cell.HasFormula
End Function


Gord Dibben MS Excel MVP
 
Back
Top