If else formula

storo1975

New Member
Joined
Apr 17, 2011
Messages
18
I have data in a spreadsheet that consists of 3 columns
First column is a list of names, Second column is a number and the third column is empty. I want to input a formula that does the followiing:

If the contents of Column B is greater than or equal to 100, then enter the word Legends. If the contents of Column B is between 51 to 99, then enter the word Tough Enough. If the contents of column b is between 10 to 50, then enter the word Cruiserweight.

I got as far as this but got stumped:

=IF(B2 >= 100, "Legends", "Other")

Can anyone assist?:confused:
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
does it matter if it's less than 10?

then use this
=IF(B2<10,"Too few",IF(B2 >= 100, "Legends",IF(B2>50,"Tough Enough","Cruiserweight")))<table width="64" border="0" cellpadding="0" cellspacing="0"><tr height="20"><td style="height:15.0pt;width:48pt" width="64" height="20"></td> </tr></table>
 
Upvote 0
=IF(B2<10,"Not Qualified",IF(B2 >= 100, "Legends",IF(B2>50,"Tough Enough","Cruiserweight")))
 
Upvote 0

Forum statistics

Threads
1,224,598
Messages
6,179,823
Members
452,946
Latest member
JoseDavid

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