Calculate drop-down values based on another dropdown

Kallaks

New Member
Joined
May 10, 2021
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
  2. Mobile
Hi

I am working with customer responses in drop-down values of yes, no, not sure in one column and based on the responses I would like to calculate the traction of the product

Which can be strong average or poor

So my questionnaire looks like

Q1 - yes, no, not sure
Q2- yes , no, not sure

And based on the responses I need to calculate traction

How do I achieve it
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi Kallaks,

So which response pair would give Strong, Average or Poor? Do questions 1 or 2 have higher weight?

If the question doesn't matter by weight then you could just allocate Yes=1, Not sure=0 and No=-1 to the responses like this (So you'd get -2 to 2 and adding 3 let's you use CHOOSE to give the desired rating).

Kallaks.xlsx
FGHIJK
1Q1Q2COUNTIFResult
2YesNo0Average
3
4
5Q1Q2COUNTIFPossible
6YesYes2Strong
7YesNo0Average
8YesNot sure1Average
9NoYes0Average
10NoNo-2Poor
11NoNot sure-1Poor
12Not sureYes1Average
13Not sureNo-1Poor
14Not sureNot sure0Average
Sheet1
Cell Formulas
RangeFormula
I2,I6:I14I2=(COUNTIF(F2:G2,"Yes")*1)+(COUNTIF(F2:G2,"Not sure")*0)+(COUNTIF(F2:G2,"No")*-1)
K2,K6:K14K2=CHOOSE((COUNTIF(F2:G2,"Yes")*1)+(COUNTIF(F2:G2,"Not sure")*0)+(COUNTIF(F2:G2,"No")*-1)+3,"Poor","Poor","Average","Average","Strong")
Cells with Data Validation
CellAllowCriteria
F2:G2ListYes,No,Not sure
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,003
Members
448,935
Latest member
ijat

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