Using High, Medium & Low as responses to questions across multiple columns, how do I determine how the overall rating?

MellyX

New Member
Joined
Feb 21, 2023
Messages
3
Office Version
  1. 2021
Platform
  1. Windows
1676960465855.png
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
I suspect that others come up with some better options but in MS365 & 2021, this might work for you.

20230221 Low Medium High MellyX.xlsx
ABCDEFGHIJKLM
1
2PositionCol2Col3Col4Col5Col6Col7Col8Col9Col10Col11Col12Average
3MediumHighHighLowHighHighLowHighHighHighHighHigh
4LowMediumHighHighMediumMediumMediumMediumMediumMediumMediumMedium
Data
Cell Formulas
RangeFormula
M3:M4M3=CHOOSE( ROUND( SUM( SWITCH(B3:L3,"Low",1,"Medium",2,"High",3)) /COUNTA(B3:L3), 0), "Low","Medium","High")
 
Upvote 0
Another option, using the median rather than the average
Fluff.xlsm
ABCDEFGHIJKLN
1
2PositionCol2Col3Col4Col5Col6Col7Col8Col9Col10Col11Col12Median
3MediumHighHighLowHighHighLowHighHighHighHighHigh
4LowMediumHighHighMediumMediumMediumMediumMediumMediumMediumMedium
5LowlowHighMediumMediumMediumHighHighHighHighHighHigh
Summary
Cell Formulas
RangeFormula
N3:N5N3=CHOOSE(MEDIAN(SWITCH(B3:L3,"Low",1,"Medium",2,"High",3,0)),"Low","Medium","High")
 
Upvote 0
Not sure which option you ended up going with but glad we could help.
Applying Fluff's more concise syntax to the one I gave you reduces it to this:

Excel Formula:
=CHOOSE(
        ROUND(
            AVERAGE(
               SWITCH(B3:L3,"Low",1,"Medium",2,"High",3)),
         0),
   "Low","Medium","High")
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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