Using IFERROR and IF Statements together

Benny236

New Member
Joined
Feb 29, 2016
Messages
33
Hi all

I would like to be able to use IFERROR and an IF statement in one formula. I would like a box to say nothing ("") if the box says "VALUE!" or "£0.00". How do I do this?

The math I'd like to include is:

A3/10

So something like IF(A3/10 = 0, "", A3/10) which works for the "£0.00", but not for the "VALUE!" issue.


Thanks.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi all

I would like to be able to use IFERROR and an IF statement in one formula. I would like a box to say nothing ("") if the box says "VALUE!" or "£0.00". How do I do this?

The math I'd like to include is:

A3/10

So something like IF(A3/10 = 0, "", A3/10) which works for the "£0.00", but not for the "VALUE!" issue.


Thanks.
Hi Benny236,

I cannot figure how anything other than 0 divided by 10 would be 0, so your formula should always display the A3/10 result instead of the "".

To wrap this in an IFERROR statement it should be as simple as this:

=IFERROR(IF(A3/10=0,"",A3/10),"")
 
Last edited:
Upvote 0
That's perfect. I knew it would be simple like that but wasn't exactly sure of the syntax. Thanks very much for your help Fishboy!
 
Upvote 0

Forum statistics

Threads
1,225,375
Messages
6,184,612
Members
453,247
Latest member
scouterjames

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top