Simple Question

  • Thread starter Thread starter cjjoo
  • Start date Start date
C

cjjoo

i want to get rid of the #NUM from my cells. Can i use conditional
formatting? and what is the formula to use?
 
Use IF(ISERROR(Formula),"",Formula)

If you have multiple entries you could use a macro also.
 
Hi!

To use cf:

Select the cell
Conditional Formatting
Formula is: =ISERROR(cell_reference)
Set the font color to be the same as the background color

Another way:

Instead of using cf put an error trap in the formula that is returning the
#NUM! error.

=IF(ISERROR(your_formula)),"",your_formula))

Biff
 

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

Similar Threads


Back
Top