Turning #value into a blank cell

A

amik

I have this formula A5/b5-1

Somtimes due to a pivot table there will be no numbers in the A5 and B5.
Curently it gives mea #value. is there a way to get this to be blank?

I would appreciate any help
 
E

Eduardo

Hi,
same answer given in your other post
=iferror( A5/b5-1,0)

If this helps click yes, thanks
 
J

Jimmystix

amik;837927 said:
I have this formula A5/b5-1

Somtimes due to a pivot table there will be no numbers in the A5 and
B5.
Curently it gives mea #value. is there a way to get this to be
blank?

I would appreciate any help

use an IF combined with an ISERROR so it should read
=IF(ISERROR(A5/B5-1),"",A5/B5-1)
 

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