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

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
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,223,099
Messages
6,170,107
Members
452,302
Latest member
TaMere

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