• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to convert 1-5 scale Likert scale to 0-10 scale

How would I transform a column consisting of values 1-5 to a 0-10 scale?
Thanks in advance.
You always make your question unclear.

Please give us a sample file, showing that: what you have? and what you want?

Without that >>

We reserve to close your post should you fail to give us a clear reply.

Regards
 
Thank you, but the 0-10 scale must start from 0.
You can't just multiple 1-5 by 2.
In case of =1 would 1x2=2 when it needs to be =0.
 
I wonder whether more is 'lost in translation' than is gained. Looking at the 5-point Likert scale (@bosco_yip, like you, I didn't know it had a name), each scale point might be interpreted as capturing a range of sentiments
82777
I am not convinced that the 0-10 scale equivalents do the job much better despite the spurious accuracy implied be the additional decimal place.
Turning to a 7-point Likert scale and the conversion gets even messier.
82778
My formulas for the 0-10 scale and range calculations were
Code:
= LET(
    scale,     SEQUENCE(n_point,,n_point,-1),
    ten_point, 10 * (scale - 1) / (n_point - 1),
    ten_point
  )
 
 
= LET(
    scale, SEQUENCE(n_point,,n_point,-1),
    upper, TEXT( scale / n_point,   "0%"),
    lower, TEXT((scale-1) / n_point,"0%"),
    range, lower & "-" & upper,
    range
  )
 

Attachments

  • likert.xlsx
    12.8 KB · Views: 3
Back
Top