Populating certain cells based off a point system value

Hollywood9819

New Member
Joined
Dec 11, 2017
Messages
13
rating
5-advanced
4- proficient
3- competent
2-developing
1- learning
0-nonperformer
range
96-100
90-95
81-89
76-80
70-75
64-69
earned

<tbody>
</tbody>

Issue: I am trying to auto-populate a score in the "earned" row in the appropriate column based off a score in a separate cell from another sheet. I'm not even sure how to set up a formula for this other than assuming I would use an "IF" formula. Assuming the chart above is using rows 1-3 and columns A-G, can anyone provide assistance to this problem?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hello,

In the advanced cell use

=IF(AND(Sheet4!$A$1>=96,Sheet4!$A$1<=100),5,"")

moving across

=IF(AND(Sheet4!$A$1>=90,Sheet4!$A$1<=95),4,"")
=IF(AND(Sheet4!$A$1>=81,Sheet4!$A$1<=89),3,"")
=IF(AND(Sheet4!$A$1>=76,Sheet4!$A$1<=80),2,"")
=IF(AND(Sheet4!$A$1>=70,Sheet4!$A$1<=75),1,"")
=IF(AND(Sheet4!$A$1>=64,Sheet4!$A$1<=69),0,"")

Not sure what you want to do if score is below 64, I assume this won't happen.

I would advise putting the score ranges and the rating is separate cells so you can reference them.
 
Upvote 0
There is nothing I can do with the format as it is a set template I can't adjust for work. Thanks for the help though!!!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,614
Messages
6,125,848
Members
449,266
Latest member
davinroach

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