Is it possible to have Cells Fill in a character if values are met?

hammerhead13

Board Regular
Joined
Aug 4, 2008
Messages
86
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. Mobile
What I am trying to accomplish if is is possible is if the value on the left is within the Range then the Rating on Right will insert Stars 1/ Cell.

Is this Possible? Thank you!


[TABLE="width: 500"]
<tbody>[TR]
[TD]Values[/TD]
[TD][/TD]
[TD]Ratings
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]80-100[/TD]
[TD][/TD]
[TD]*[/TD]
[TD]*[/TD]
[TD]*[/TD]
[/TR]
[TR]
[TD]60-79[/TD]
[TD][/TD]
[TD]*[/TD]
[TD]*[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]50-59[/TD]
[TD][/TD]
[TD]*[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Is this what you mean

Book1
ABCD
280***
350*
460**
599***
649
778**
Sheet2
Cell Formulas
RangeFormula
B2=IF(A2>=50,"*","")
C2=IF(A2>=60,"*","")
D2=IF(A2>=80,"*","")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,264
Messages
6,171,081
Members
452,377
Latest member
bradfordsam

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