DIV % FORMULA

  • Thread starter Thread starter Paula
  • Start date Start date
P

Paula

Hi, I am trying to get a formula to work as follows

=(h5/i5)-1 but I want to learn how to combine this with the iserror formula
to equal 0 if there is an error instead of DIV. Can anyone explain how to
combine with iserror?

Many thanks
Paula
 
=IF(ISERROR((H5/I5)-1),0,(H5/I5)-1)

but since the error occurs only when i5 is blank, this simpler formula will
also work
=IF(I5,(H5/I5)-1,0)
since any non-zero value for i5 will be taken as TRUE in the IF condition
best wishes
 
It should be noted that IFERROR is available only in Excel 2007
best wishes
 
My apologies all.
Eyesight getting poorer or reading what I want to read!!!!
I thought Paula had asked about IFERROR, but on re-reading I see it was
ISERROR.
 

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

iserror problem 9
hide #div/0 2
Nested If not returning correct values 5
HIDE #div/0 1
if is error and #DIV/O! 4
Need "Div/0" Average Relief ... 4
Overwriting #DIV/0 value using ISERROR 3
Isblank error 3

Back
Top