I am working with the newest version but the Expression Manager does not appear on the configuration tab.
At one point in my survey I am needing randomly allocate the participants one of 3 different questions (one control, 2 experimental), but I do not know how to do this without the EM?
Else : Questioin type Equation, code ALEA, value (equation)
{alea(1,2)}
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Never seen the EM, all I see is "advanced", "users" and "settings". I have the basic edition.
Apologies but very new to LS so a bit confused by what you mean with the second part. So I should have one question group, the first with code ALEA with {alea(1,3)} as the logic (equation). Should I then have the following 3 questions as normal only with a relevance equation?
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Oh yes ! The expression manager manual and example .
You're right : it was not here if debug=0 and you're not super-admin.
Please : best is to report the bug.
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
With no EM I used the below code in a preceding group to randomise the 3 groups. However from a test launch Group A has 25 respondents, Group B has 12 and C has 13. Although this could be at random I am concerned it is putting a weighting on Group A (2:1:1). It will not be feasible to edit the survey again when launched fully so wanted to double check.
<script>
$(function(){
$('body').hide()
var showNumberOfGroups = 1; //enter number of groups to randomly show.
var $cboxs = $('input:checkbox');
for(var i=0;i<1;i++){
$cboxs.eq(i).prop('checked',true);
}
document.getElementById('movenextbtn').click();
})
</script>
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.