IF Statement

tennisbuck12

New Member
Joined
Aug 21, 2017
Messages
13
Board,

I have one more IF statement that I can't figure out. It's below
=IF(I9>=0.99,1.5,IF(I9>=0.95,(I9-0.95)/0.04*0.5+1,IF(I9>=0.9,(I9-0.9)/0.05*0.25+0.75,IF(I9>=0.8,(I9-0.8)/10*0.25+0.5,IF(I9<0.8,0)))))*100

The bold part isn't bringing back the right value. I9 is 86.7 and returning 50.2 It should be returning the value 66.8
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Re: IF Statement (Should be easy, just not for me)

The formula you have calculates to 50.2 why should it calculate to 66.8, you don't explain that.
 
Upvote 0
Re: IF Statement (Should be easy, just not for me)

The formula you have calculates to 50.2 why should it calculate to 66.8, you don't explain that.

Because its not reading the bolded part of the formula correctly. So here's the orginal formula that I had to transfer so older versions of excel could read it

IFS(I43>=99, 150,I43>=95, (I43-95)/4*50+100,I43>=90, (I43-90)/5*25+75,I43>=80, (I43-80)/10*25+50,I43<80,0)

I43 is the same as I9
 
Upvote 0
Re: IF Statement (Should be easy, just not for me)

Then:

(I9-0.8)/0.1 not (I9-0.8)/10
 
Upvote 0

Forum statistics

Threads
1,215,742
Messages
6,126,601
Members
449,320
Latest member
Antonino90

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