Identifying Cells with formulas

  • Thread starter Thread starter VETcalc
  • Start date Start date
V

VETcalc

I am aware of the VBA approach to identifying Cells with formulas. M
question,
is there anyway to use a Excel Function with logic to identifying
cell that contains
a formula?

In advance, thank you for your help!

Bo
 
Please ignore this answer if some one can help you without resorting to UDFs.
Otherwise this tiny UDF:

Function IsFormula(cell As Range) As Boolean
IsFormula = cell.HasFormula
End Function

will tell you TRUE/FALSE if cell has a formula.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top