Complex Formula

MOMSTAXISVCINC

New Member
Joined
Jun 29, 2007
Messages
3
Ok, I need help and was searching and found this board. I have some experience with formulas but this is stumping me. I have a series of perameters that are compiled to show individual performance for a incentive. I want to calculate what each individual percentage is based on performance numbers.

Scenario:

R7= 90 (number realistically is anywhere between 0-100)

I want to build a formula that will result in the following

If R7 is >90 "4"
if R7 is <90 but >79 "3"
if R7 is <80 but >69 "2"
if R7 is <70 "0"

Thanks for any help and ideas on this. I know it could virtually be so simple.......

Moms
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hi There

Welcome to the Board

Does this solve your issue

=IF(R7>=90,4,IF(OR(R7<90,R7>=79),3,IF(OR(R7<80,R7>=69),2,0)))

HTH

DAve
 
Upvote 0
It is correctly assigning the value if >=90, but then after that everything is "3". Not resolving for 3= >79 but <90.

Im looking to see if it may be something I can figure out as yours at least resolves where none of my attempts did.

Thanks

Moms
 
Upvote 0

Forum statistics

Threads
1,215,628
Messages
6,125,900
Members
449,271
Latest member
bergy32204

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