Highlight formulas

  • Thread starter Thread starter Philip Reece-Heal
  • Start date Start date
P

Philip Reece-Heal

Does anyone know of a function that can identify if a cell has a formula in
it, as opposed to a number or text.

Any help appreciated

Philip
 
Hi
not without using VBA. You may use a UDF such as
public function is_formula(rng as range) as boolean
is_formula=rng.hasformula
end function
 

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