Home arrow Support arrow Forums
LimeSurvey Forums
Welcome, Guest
Please Login or Register.    Lost Password?
Re:[done] Likert scale (1 viewing) (1) Guest
Go to bottom Favoured: 1
TOPIC: Re:[done] Likert scale
#17469
tjansson (User)
Fresh Lemon
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
[done] Likert scale 3 Months, 1 Week ago Karma: 0  
Dear all

I have tried to look through the manual as well as the forum by I couldn't find any help on creating a array the way I wanted. I am working on a survey where I am told to use a likert scale. This means the that labels change for each question as in this image:


I couldn't find any information how to do this with the existing question types, but maybe I am wrong. Does anybody know how to create the question in the image?

Kind regards
Thomas Jansson
 
Logged Logged  
 
Last Edit: 2008/08/12 11:49 By c_schmitz.
  The administrator has disabled public write access.
#17472
pinguinjosef (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 1  
Hey Thomas,

this is a tricky one, but it IS possible! Choose the question type Array (Flexible labels). Define your label set with you scale (e.g. 0 to 7 as pictured). Then you have to enter your answers as follows:

ITEM statement 1|statement 2

You can eventually look up a HTML tag to set a more decent space between the item and the statements.

Greetings,

Jan
 
Logged Logged  
  The administrator has disabled public write access.
#17473
tjansson (User)
Fresh Lemon
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 0  
Hi pinguinjosef

Thanks for the answer. I have tried to do as you suggest but it is really hard to make it look nice since there is no html code for tabulators (expect in pre), so left side labels are not not indented at the same level. Do you have any other idea on how to solve the problem?


Kind regards
Thomas
 
Logged Logged  
  The administrator has disabled public write access.
#17475
pinguinjosef (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 1  
Hey Thomas,

I have thought this problem would appear ...

For such a special question you should use a CSS based template where you define the answer text as

Code:

white-space: nowrap;


Another possibility is to try and enter the answers as follows:

Code:

<span style="white-space: nowrap;">ITEM statement 1|statement 2</span>


If this doesn't work try using DIV instead of SPAN. And if both won't work you'll have to do a CSS layout. I can support you with one I did for a customer, if needed.

Greetings,

Jan
 
Logged Logged  
  The administrator has disabled public write access.
#17481
tjansson (User)
Fresh Lemon
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 0  
You are probably right about the css - I tried to use a table approach but beside being very ugly it didn't work as expected.

Code:


<table rules="cols" align="left"><tr><td>Colours on screen</td><td> confusing</td></tr></table>|was very clear



I would indeed be interested in a css based layout - I guess this is the only way to do it beside hacking the code base to accept three pipe signs, but that is well beyond my time-limit.
 
Logged Logged  
  The administrator has disabled public write access.
#17482
holch (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 0  
Not totally clean, but you could define different questions for each Item.
 
Logged Logged  
  The administrator has disabled public write access.
#17483
tjansson (User)
Fresh Lemon
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 0  
But wouldn't that create a lot of spacing between each question in a way so it didn't seem as an array anymore?
 
Logged Logged  
  The administrator has disabled public write access.
#17485
holch (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 0  
Well, is it that important to be an array? Then my solution probably wouldn't work.
 
Logged Logged  
  The administrator has disabled public write access.
#17486
pinguinjosef (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 1  
OK, I will support you with my css tomorrow. Just PM me your email adress.

Greetings,

Jan
 
Logged Logged  
  The administrator has disabled public write access.
#17490
pinguinjosef (User)
Junior Lime
Posts: 38
graphgraph
User Offline Click here to see the profile of this user
Re:Lickert scale 3 Months, 1 Week ago Karma: 1  
Just to close this topic: Entering DIV tags with a nowrap-style is possible. General spoken a CSS based layout is the choice to be sure a questionnaire is displayed properly.
 
Logged Logged  
  The administrator has disabled public write access.
Go to top