Formula for returning multiple criteria

chris007

Board Regular
Joined
Jun 27, 2011
Messages
82
Hello,
Newby here so please be patient.

I am attempting to return a word dependent on the value outcome, can someone here please assist me.

the formula a have documented is

=IF(G10>15,"Extreme", IF(G10<15,"Moderate", IF(G10<7,"Low")))

The formula works in regards to returning the Word Extreme and Moderate however Low returns the word False

I m looking for Moderate where the value is between 7 and 15 and the word low where the value is below 7

I am using Microsoft Excel 2010

Thank you Snoopy007
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try either

=IF(G10>15,"Extreme", IF(G10<7,"Low", IF(G10<15,"Moderate")))

or

=LOOKUP(G10,{0,7,15},{"Low","Moderate","Extreme"})
 
Upvote 0
Thanks,
that worked perfectly

I Know this may sound silly but are you able to help me understand why my formula did not work.

Thanks Again
 
Upvote 0
The ordering of the statement. By putting G10<15=Moderate second, you stated that all values less than 15 were moderate (even though you added later that less than 7 is Low).

Excel steps through the if statement: If(Value1, {is true do this}, {is false do that}) You stated that if the value of G10 were above 15 make "Extreme". If value were not above 15 (or false), then if less than 15 make Moderate. For all values less than 15, G10<15 would be true therefore "moderate" will be the returned value.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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