Reverse scoring for likert scale

jmcateer

New Member
Joined
Jun 25, 2018
Messages
3
Hello,

I am analyzing data from a survey (1= Not Interested, 5= Very Interested) in which some questions have reverse scoring (5=Not Interested, 1= Very Interested). I am seeking to have a formula for a column to automatically reverse the scoring. How do I do this?

Best,
John
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Welcome to the forum.

If you are up to date with your software, in Excel 365 you can use the cool new function SWITCH, like this (where one of your 1 through 5's is in A1):

Code:
=SWITCH(A1,1,5,2,4,3,3,4,2,5,1)

And if you're still using old software, this can do it:

Code:
=MAX(IF(A1={1;2;3;4;5},{5;4;3;2;1}))
 
Last edited:
Upvote 0
You can also use:

=6-A1

Do you need some kind of check in the formula to decide which rows need to be reversed, and which ones don't?
 
Upvote 0
Doi! Man! did I ever guild the lily there.
 
Upvote 0
Welcome to the forum.

If you are up to date with your software, in Excel 365 you can use the cool new function SWITCH, like this (where one of your 1 through 5's is in A1):

Code:
=SWITCH(A1,1,5,2,4,3,3,4,2,5,1)

And if you're still using old software, this can do it:

Code:
=MAX(IF(A1={1;2;3;4;5},{5;4;3;2;1}))

Thank you very much Dr. Steele,

The numbers are actually in Q3-Q7, T3-T7. In this case would the formula look like: =MAX(IF(Q3={1;2;3;4;5},{5;4;3;2;1})).
I tried this and it did not work.
 
Upvote 0

Forum statistics

Threads
1,215,357
Messages
6,124,483
Members
449,165
Latest member
ChipDude83

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