Number range in an excel cell

excelfrustrated

New Member
Joined
Oct 20, 2021
Messages
1
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
HI, I'm preparing a risk assessment heat map that will assign numbers between a certain range a rating of low, medium or high. The numbers will be between 1 to 25 where 1-6 rate low; 7-15 rate medium and 16 - 25 rate high.

The heat map will be used in another table on another tab where the number ranges will represent the multiplication of a likelihood rank x impact. likelihood will be scored between 1 and 5 and the same for impact.

I hope I've made sense and someone can provide some assistance. Thank you in advance
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
=IF(VALUE<6,"Low",IF(VALUE<15,"Medium",IF(VALUE<25,"High")))

Some others with more experience may have a slicker way but that should work. Value would be the cell you are trying to assign a range.
 
Upvote 0
Welcome to the MrExcel board!

Here is one other way to do it.

21 10 21.xlsm
AB
112medium
223high
324high
46low
510medium
615medium
lmh
Cell Formulas
RangeFormula
B1:B6B1=LOOKUP(A1,{1,7,16},{"low","medium","high"})
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,851
Members
449,051
Latest member
excelquestion515

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