Getting rid of #VALUE! Excel Formula

tHE fLY

New Member
Joined
Jul 8, 2014
Messages
31
hi everyone!,

I am running into a #VALU! error wen running this formula for certain cells. I would like to show a Blank cell is the value is not available.

Any help would be appreciated.

=IFERROR(IF(OR(P$50="x",Q$49>0,O$49>0),ROUND(N62*Q$16/12,2),""),IF(L$29-E29 >365,ROUND(N62*Q$16/12,2)))
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
The way this is written, your second IF statement will be executed only when the first IF statement produces an error, not when it's false. Maybe try it like this:

=IFERROR(IF(OR(P$50="x",Q$49>0,O$49>0),ROUND(N62*Q$16/12,2),IF(L$29-E29 >365,ROUND(N62*Q$16/12,2))),"")
 
Upvote 0
Code:
=IFERROR(IFERROR(IF(OR(P$50="x",Q$49>0,O$49>0),ROUND(N62*Q$16/12,2),""),IF(L$29-E29>365,ROUND(N62*Q$16/12,2))),"")

Just nest it in another =iferror
 
Upvote 0

Forum statistics

Threads
1,215,966
Messages
6,127,974
Members
449,414
Latest member
sameri

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