Converting 1-5 scale to 0-5 scale

femkewg

New Member
Joined
Sep 8, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hii all,
For my internship I have to convert a 1-5 scale to a 0-5 scale.
So the 1 is a 0 and the 5 is a 5 (with a range of numbers in between)
Is there a formula that can do this?
I have tried different things but I cannot figure this out on my own.

Thanks in advance!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
There is not enough information to work with.
what 1-5 and 0-5 scale is?
Could you dig in a specific example?
 
Upvote 0
There is not enough information to work with.
what 1-5 and 0-5 scale is?
Could you dig in a specific example?
I have data from one data set that uses a 0 to 5 scale and one data set that uses a scale from 1 to 5
So now I want to compare the two and get the average, but since they do not use the same scale the average is off.
Example.xlsx
ABC
11-5 scale0-scale
210
31,10,125
41,20,25
51,30,375
61,40,5
71,50,625
81,60,75
91,70,875
101,81
111,91,125
1221,25
132,11,375
142,21,5
152,31,625
162,41,75
172,51,875
182,62
192,72,125
202,82,25
212,92,375
2232,5
233,12,625
243,22,75
253,32,875
263,43
273,53,125
283,63,25
293,73,375
303,83,5
313,93,625
3243,75
334,13,875
344,24
354,34,125
364,44,25
374,54,375
384,64,5
394,74,625
404,84,75
414,94,875
4255
Vergelijking Likert scale
 
Upvote 0
I have data from one data set that uses a 0 to 5 scale and one data set that uses a scale from 1 to 5
So now I want to compare the two and get the average, but since they do not use the same scale the average is off.
Example.xlsx
ABC
11-5 scale0-scale
210
31,10,125
41,20,25
51,30,375
61,40,5
71,50,625
81,60,75
91,70,875
101,81
111,91,125
1221,25
132,11,375
142,21,5
152,31,625
162,41,75
172,51,875
182,62
192,72,125
202,82,25
212,92,375
2232,5
233,12,625
243,22,75
253,32,875
263,43
273,53,125
283,63,25
293,73,375
303,83,5
313,93,625
3243,75
334,13,875
344,24
354,34,125
364,44,25
374,54,375
384,64,5
394,74,625
404,84,75
414,94,875
4255
Vergelijking Likert scale
So the formula I need is how to get the number 1,4 to a 0,5 (so that the scales are all 0-5)
 
Upvote 0
With 1 to 5 scale, step 40 (as sample)
With 1-5 scale from A2
B2:
Code:
=PERCENTILE(INDEX((5-0)/40*(ROW(INDIRECT("1:41"))-1),),PERCENTRANK(INDEX(1+(5-1)/40*(ROW(INDIRECT("1:41"))-1),),A2))
where (5-0)/40 represent "0-5 scale step 40" and where (5-1)/40 represent "1-5 scale step 40"
C2: Concise formula:
Code:
=PERCENTILE(INDEX(0.125*(ROW(INDIRECT("1:41"))-1),),PERCENTRANK(INDEX(1+0.1*(ROW(INDIRECT("1:41"))-1),),A2))
Cell Formulas
RangeFormula
B2:B42B2=PERCENTILE(INDEX((5-0)/40*(ROW(INDIRECT("1:41"))-1),),PERCENTRANK(INDEX(1+(5-1)/40*(ROW(INDIRECT("1:41"))-1),),A2))
C2:C42C2=PERCENTILE(INDEX(0.125*(ROW(INDIRECT("1:41"))-1),),PERCENTRANK(INDEX(1+0.1*(ROW(INDIRECT("1:41"))-1),),A2))
A3:A42A3=A2+0.1
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,124
Members
449,096
Latest member
provoking

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