Using nested If function

tara_922

Board Regular
Joined
Jul 15, 2011
Messages
127
Hiya All!

You have all been incredibly amazing so far. I have another question. I know this is possible, it's just not working the way I think it should. So obviously there's a problem with the way I'm thinking it should work. Any and all assistance is appreciated!

So far this is my formula,
=IF(ISERROR(AVERAGE(B17:L17)),"",AVERAGE(B17:L17))

This is working great, however, I want to add a condition that IF the Average of B17:L17=<.01 then it returns the value "<1%"

Thanks again in advance!

Tara
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hiya RichardMGreen!

You are amazing! Thanks so much for the formula! It's working wonders! I'm so excited to have found some good support!

Tara
 
Last edited:
Upvote 0
Hiya all!

Can I ask one more question please?

So, the formula is returning <1%, which is great, however, if the value is 0% I want a 0% returned. So I guess, what I need is if the value is >0 and <1 I want ,1% returned. Any luck??

Thanks,
Tara
 
Upvote 0
Try this:-
=IF(ISERROR(AVERAGE(B17:L17),"",if(AVERAGE(B17:L17)=0,"0%",if(AVERAGE(B17:L17)<=0.01,"1%",AVERAGE(B17:L17))))

I think that's the right number of brackets.
 
Upvote 0

Forum statistics

Threads
1,224,605
Messages
6,179,860
Members
452,948
Latest member
UsmanAli786

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