May 13, 2008

excel function isFormula

'Function to test if a cell is a formula
'http://www.ozgrid.com/VBA/ExcelIsFormula.htm

Function IsFormula(Check_Cell As Range)
   IsFormula = Check_Cell.HasFormula
End Function