Nested If statements

Excel for President

New Member
Joined
Nov 4, 2016
Messages
8
I am currently struggling with a formula I have in my excel. There is a number in cell F11 that is between 1 and 5 (it varies based on the information entered). I am trying to write a formula that will say if the number is less than 2, then say Bronze. If it is 2-3, then say Silver. If it is 3-4 then say Gold. Finally, if it is greater than 4, then say Platinum. I've tried using: =IF(F11>4,"Platinum",=IF(F11>3,"Gold",=IF(F11>2,"Silver",=IF(F11>1,"Bronze",0)))) and =IF(F11<2,"Bronze",=IF(AND(F11>2,F11<3),"Silver",=IF(AND(F11>3,F11<4),"Gold",=IF(F11>4,"Platinum")))) but had no luck with neither formula. I thought both formulas would work but apparently I was sadly mistaken. Is there something I'm missing? Any help is much appreciated!
 
Your original formula should work as well if you remove all the = signs

=IF(F11>4,"Platinum",IF(F11>3,"Gold",IF(F11>2,"Silver",IF(F11>1,"Bronze",0))))
 
Upvote 0

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Awesome! I got the formula to work by removing the equal signs. Thank you for your help! I am going to have to remember that. Such a silly mistake.
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,662
Members
449,462
Latest member
Chislobog

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