filter for non-formulas

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

Guest

I have a list of data. Is there a way I can filter a column of rows to
extract only those cells that do not contain formulas?
 
Hi
you could use a helper column together with a UDF. Put the following
code in one of your modules:
public function is_formula(rng as range)
is_formula=rng.hasformula
end function

and use this in your helper column:
=IS_FORMULA(A1)
 

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