Convert Likert scale to numbers for calculations (e.g. "very high" = 5)

Hi all,

 

My app has some 5-point Likert-scale enum type lists (where users can select "very low" to "very high").

For calculations in my dashboard, I would like to create a virtual column that converts text values to numbers: "very low" = 1, "low" = 2, etc. 

The values are not in a separate referenced table.

Can't seem to figure it out. 

Any help?

 

 

Thanks in advance!

Solved Solved
0 3 461
1 ACCEPTED SOLUTION

Hi @Bibaboy10 

It's like this.

 

Switch([Likert-scale],
"Very high", 5,
"high", 4,
"Normal", 3,
"low", 2,
"Very low", 1,
0
)

 

 

View solution in original post

3 REPLIES 3

Hi @Bibaboy10 

It's like this.

 

Switch([Likert-scale],
"Very high", 5,
"high", 4,
"Normal", 3,
"low", 2,
"Very low", 1,
0
)

 

 

A little something extra.๐Ÿ˜Ž
We can also use this text notation.

2022-02-02_06h49_25.png

โ€ƒ

Thanks!

Top Labels in this Space