Formula help, please

Hapdawg88

New Member
Joined
Dec 28, 2016
Messages
11
=IF(J2>75,"3",IF(J2>65,"2",IF(J2>50,"1",IF(ISBLANK(J2),"none","0"))))

J2 column holds the scores to a conditional test. Not everyone was given the test so there are some blank cells. IF the cell is blank them "none" belongs in the column if the cell has a number in it then the first IF statement applies.

When I use the formula above a "3" is returned for the blank cells. I cannot figure out why.

Thank you in advance for your help!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
The cells you're evaluating are probably not "blank", but have a space or some other invisible character in them. You could see that the "apparently blank" cells are truly cleared, or just change the formula to account for the fact that some cell contents are going to be " ".
 
Upvote 0
Try
=IF(J2>75,"3",IF(J2>65,"2",IF(J2>50,"1",IF(J2="","none","0"))))
 
Upvote 0
The cells you're evaluating are probably not "blank", but have a space or some other invisible character in them. You could see that the "apparently blank" cells are truly cleared, or just change the formula to account for the fact that some cell contents are going to be " ".


That was it! Thank you!
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,699
Members
449,048
Latest member
81jamesacct

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