if function and iferror function

07312

New Member
Joined
Oct 26, 2018
Messages
3
hi!
i wish someone could help me. i have problem with a cell (actually F11) with the formula =if(E11>=0.75,"mastered",if(E11>=0.25,"nearly mastered",if(E11>=0,"least mastered","")))
and the formula in cell E11is =iferror((D11/C11),""). my problem is that when ever E11 is in error the value in F11 is "mastered", why is F11 not blank. . i'm expecting it to be blank if E11 is in error. . please help!
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
=IF(E11="","",if(E11>=0.75,"mastered",if(E11>=0.25,"nearly mastered",if(E11>=0,"least mastered",""))))
 
Upvote 0
Two ways:

Change the formula in F11 to:
Code:
=IF(E11="","",IF(E11>=0.75,"mastered",IF(E11>=0.25,"nearly mastered",IF(E11>=0,"least mastered",""))))

- or -

Change the formula in E11 to:
Code:
=IFERROR((D11/C11),-1)
then F11 will return what you want.
 
Upvote 0
thank you so much guys that was fast! i really appreciate it!!!now my problem is solve. . thanks and God bless!
 
Upvote 0
You are welcome.
Glad we were able to help!
 
Upvote 0

Forum statistics

Threads
1,215,842
Messages
6,127,231
Members
449,371
Latest member
strawberrish

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