Hide divo error

C

Cassie Rodgers

I have the following formula in cells for future months. I would like to
hide he divo result for months wihout data.

my formula is =F37/SUM(F37:F38)

I tried to enter this as =IF(ERROR(F37/SUM(F37:38)),"-",F37/SUM(F37:38) as I
found in online help. This formula does not work either.

Can anyone give me the correct formula to hide the divo error message for my
formula?
 
×

מיכ×ל (מיקי) ×בידן

Try this one:
=IF(ISERR(F37/SUM(F37:F38)),"-",F37/SUM(F37:F38))
Micky
 
×

מיכ×ל (מיקי) ×בידן

Try this one: =IF(ISERR(F37/SUM(F37:F38)),"-",F37/SUM(F37:F38))
Micky
 
G

Gord Dibben

You are attempting to mix 2007 IFERROR function with 2003 ISERROR function.

Stick with one version or the other.

2007 =IFERROR(F37/SUM(F37:F38),"-")

2003 =IF(ISERROR(F37/SUM(F37:F38)),"-",F37/SUM(F37:F38))


Gord Dibben MS Excel MVP
 

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

Top