- Posts: 10
- Thank you received: 0
How to reorder question between groups
I have very simple problem, but can't find solution(((.
I have several groups of questions and I need to reorder questions in a way that they don't follow in groups.
For example, I have two qroups G1 and G2 and two questions in each group Q1 and Q2, how can I define order as G1_Q1 -> G2_Q2 -> G1_Q2 -> G2_Q1? (first question goes from Group 1, second from Group 2, then again from Group 1 and last from Group 2)
Please help!!!
Please Log in or Create an account to join the conversation.
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
I need to keep groups as defined for assessment calculation.holch wrote: I think you will have to change your groups to the order you wish.
This looks bit strange, very basic stuff doesn't exist... How to use tool, if I can't just to change order?
Please Log in or Create an account to join the conversation.
However, I would have a look at the Expression Manager which exists in Limesurvey for a few releases now. It is quite mighty from what I have seen so far, but I only have very little knowledge about it so far. It allows a lot of customization.
If you can't reorder the groups, from what I know you can make more advanced calculations for the assessment at least. Maybe someone who knows more about EM in Limesurvey can help out here?
I'm not a LimeSurvey GmbH member. I answer at the LimeSurvey forum in my spare time. No support via private message.
Some helpful links: Manual (EN) | Question Types | Workarounds
Please Log in or Create an account to join the conversation.
Definitely never need, if answer sounds like this:holch wrote: I don't think that this is "very basic stuff", but rather quite advanced stuff that 99,9% of all users will never need.
Otherwise it's pretty common, to be able to sort questions not only group by group, but also mix its between groups. Also it's not rear when assessments groups doesn't match to questions groups and it's not very hard just to add separate groups for assessments.holch wrote: And of course no one is forced to use Limesurvey. There are a bunch of commercial tools out there.
But I don't want to force and of course, there are many other tools etc., more easy just to ignore.
Please Log in or Create an account to join the conversation.
- DenisChenu
-
- Offline
- LimeSurvey Community Team
-
- Posts: 8878
- Karma: 400
- Thank you received: 1469
Don't see the problem.
A group is a group of question present in this grup (expcet with "random order").
Denis
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand (or search sondages pro).
An error happen ? Before make a new topic : remind the Debug mode .
Please Log in or Create an account to join the conversation.
My hope was to get real help...DenisChenu wrote: You can use Expression Manager and not assesment.
Don't see the problem.
Please Log in or Create an account to join the conversation.
- DenisChenu
-
- Offline
- LimeSurvey Community Team
-
- Posts: 8878
- Karma: 400
- Thank you received: 1469
But with explession manager you can use equation question type to do your own "assesment".
Denis
- docs.limesurvey.org/Expression+Manager#A..._and_Micro-Tailoring
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand (or search sondages pro).
An error happen ? Before make a new topic : remind the Debug mode .
Please Log in or Create an account to join the conversation.
Simple example, I have 4 questions Q1, Q2, Q3, Q4 (important that in survey questions goes in same order).DenisChenu wrote: If you explain exactly what ypou want maybe we can help more.
I need to have 2 assessment result A1 and A2
A1 depends on combination of answers to Q1 and Q3
A2 depends on combination of answers to Q2 and Q4
Real surveys of course much bigger, but if I get hove to make this on simple example, I can make myself all rest. I tried to do that using questions group and group assessment, it works but but questions in this case follows in groups, but for survey is important that questions shouldn't show that group to user, i.e should be mixed.
Please Log in or Create an account to join the conversation.
- DenisChenu
-
- Offline
- LimeSurvey Community Team
-
- Posts: 8878
- Karma: 400
- Thank you received: 1469
If you just want t use assesment at end page, you can do:
{if(Q1.value+Q3.value>2,"Your score for Q1 and Q3 is greater than 2","Your score for Q1 and Q3 is lesser than 3"} <br />
{if(Q2.value+Q4.value>2,"Your score for Q2 and Q4 is greater than 2","Your score for Q2 and Q4 is lesser than 3"} <br />
To use the score after in the survey (even filter some question for example).
Add 2 equation question type, use attribute "hidden" (allways hide this question)
A1 is the code, and the text is {Q1.value+Q3.value}
A2 is the code, and the text is {Q2.value+Q4.value}
After you can do:
{if(A1>2,"Your score for Q1 and Q3 is greater than 2","Your score for Q1 and Q3 is lesser than 3"} <br />
{if(A2>2,"Your score for Q2 and Q4 is greater than 2","Your score for Q2 and Q4 is lesser than 3"} <br />
Denis
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member, professional service on demand (or search sondages pro).
An error happen ? Before make a new topic : remind the Debug mode .
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.