converting letters to numeric values

wingingit2018

New Member
Joined
Feb 15, 2018
Messages
5
I have a likert scale survey project in front of me.
I need to take the survey answers and give them a numeric value.
I then need the numberic value to populate on a calculation sheet.
This survey will be used 100x over the next few months.

Sheet one:
1. Question: Answer:_______

The answer options will be A, B, C, D or E with a numeric value assigned to each answer option.
A = 1, B = .5, C = 0, D = -.5, E = -1

I need the numeric value to populate on Sheet two.
1. Answer Score: _______

for example:
(sheet one)
(cell A1) 1. Answer: A
(cell B1) 2. Answer: C

(sheet two)
(cell C5)1. Answer Score: 1
(cell C6)2. Answer Score: 0

How do I reference sheet one, cell A1's text - to populate into sheet 2, cell C5 as a numeric value?
I am using excel 2013.
I hope I asked this question clearly :?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
wingingit2018, Good afternoon.

Very clear explanation. Congrats.

Try to use:

Sheet 2

C5 -->
Code:
 [B]=LOOKUP( Sheet1!A1, {"A","B","C","D","E"}, {1,0.5,0,-0.5,-1} )[/B]

Please, tell us if it worked as necessary.

I hope it helps.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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