How can I hide #VALUE!

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

Guest

Hello,

I have this formula in cell Q194: =(P194*H194)+H194 When there is no data
in P194 this is shown in Q194 #VALUE! How can I hide this? Any help is
appreciated.

Mark
 
Mark,

If you must hide it, against fixing the problem, then try

=IF(ISERROR((P194*H194)+H194),"",(P194*H194)+H194)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi
depending on your desired result an alternative:
=(N(P194)*H194)+H194

or you may try:
=IF(ISNUMBER(P194),(P194*H194)+H194,"")
 

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

Hide columns based on row values 2
Excel Need Countifs Formula Help 0
Creating a function to auto hide rows 1
automate hide row 6
hidden rows problem 7
Hiding uncalculated values 1
help 3
Hide the decimal "." point in chart 0

Back
Top