Quantcast
Channel: Topics in Category: Can I do this with LimeSurvey? - LimeSurvey forums
Viewing all 17529 articles
Browse latest View live

please help with assessment saving to db, i tried all possible ways! - by: itsme

$
0
0
thank you amit
i tried that but didn't work
can you please make changes to the same example i attached and reupload, it doesn't make sense and drives me crazy :(

How to reference current question answer for validation - by: mikeg

$
0
0
Hi,

I'm using LimeSurvey 2.00+ and I'm trying to write a validation equation but would like to have the criteria reference the current question so that I can copy and modify it for other situations.

More specifically, for an "Array (Numbers)" question, I would like to use the criteria

(sum(peerEvalFoxes_y1_x1,peerEvalFoxes_y2_x1,peerEvalFoxes_y3_x1,peerEvalFoxes_y4_x1,peerEvalFoxes_y5_x1)==10)

repeatedly in other questions but would like to avoid having to go and change the "peerEvalFoxes" text for each question. Is there a simple way to reference the current question with some kind of variable such as $currentQuestion (i'm just making that term up) so I could use the same text repeatedly, e.g.

(sum($currentQuestion_y1_x1,$currentQuestion_y2_x1,$currentQuestion_y3_x1,$currentQuestion_y4_x1,$currentQuestion_y5_x1)==10)

Assessment with conditions - by: karencheah

$
0
0
I would like advice on how I can do this.

The assessment is broken down into sections 1, 2 & 3. If the user passes section 1 (based on the score), then the assessment will proceed to section 2, otherwise it ends. Similarly, if the user passess section 2, then the assessment will proceed to section 3, otherwise it ends.

I would love to hear suggestions on how to achieve this in LimeSurvey ver2.0. Thanks all in advance!

Regards,
Karen

please help with assessment saving to db, i tried all possible ways! - by: amit

$
0
0
Here it is:

[File Attachment: h0c777bb_2013-09-10.lss]

Maybe try using "value" instead of "NAOK" in the expression.

--
amit

Update Token Attribute using Respondent's Answer - by: andersonelias

$
0
0
Hallo Limesurvey Community,

I want to know, if survey respondent can automaticly update token attribute.

For example :
My token table :
Name || Attribute1 (Mobile)
a || 00112233
b || 22334455
c || 66778899

My first question in the survey for "a" :
Hallo a , is this your mobile phone number: 00112233 ?
Logik :
If the answer is yes : continue;
If no : show question2

Second Question :
Please give us your new number : 10020030

My new token table would be :
Name || Attribute1 (Mobile)
a || 10020030
b || 22334455
c || 66778899

Can I do this in LimeSurvey ?

Appreciate any help !

Thank You...

Limit number of questions in survey - by: Breut

$
0
0
Hi,

@Tony, the reason why I need to use question by question mode is because I need total randomisation of the questions. In another thread I posted the issue of totally randomizing between groups but as this wasn't answered I needed to revert to using the question by question mode.

This being said, I found an almost working solution using the Expression Manager but it's not that elegant so comments and improvements welcome.

Assume I want 10 questions of N to be displayed
  • I defined a hidden question before all regular questions with code numQuestions and numerical value = 0
  • I then added 1 to that numerical value each time a question is shown
  • I then added the relevance equation numQuestions<=10

This way of working does the trick, however:
  • In each "regular" question I now have a numerical value showing up as adding 1 to the numQuestions variable shows that new value. Question is can I hide this value?
  • When the relevance equation is false (so numQuestions is > 10) an "empty" question is shown while taking the survey that needs a click on the "next" button in order to move on. This is really awkward. Why is this question shown as the relevance equation is false? How can I get rid of it?

Thanks for advising on whether this is a good way to go about this and how to solve these issues.

PS: To be even more specific, there are multiple numQuestions variables running through each other as they mimick the 'groups' I mentioned before (so numQuestionsG1, numQuestionsG2, etc). Again, this works fine but shows an "empty" question per group the moment the relevance equation goes over the threshold of 10 shown questions.

detect token lenght character in a question code - by: tpartner

$
0
0
Try something like this:
<script type="text/javascript">
	var mytok;
	var token = "{TOKEN:ATTRIBUTE_1}";
	if(token.length < 4){
		mytok1 = "smaltoken";
	}
	else{
		mytok2 = token;
	}
 
</script>

How to reference current question answer for validation - by: tpartner


Assessment with conditions - by: tpartner

Update Token Attribute using Respondent's Answer - by: andersonelias

$
0
0
Hai Tony,
Ok ! Thanks for your reply.....
:)

please help with assessment saving to db, i tried all possible ways! - by: itsme

$
0
0
perfect, now it works !!! thanks a lot my dear, appreciated a lot ;)

best regards
Mike

Assessment with conditions - by: tpartner

$
0
0
You can use Expression Manager to store your own "assessments" in Equation type questions and then use relevance to hide/show questions or groups.

Can graphs be updated in real time? - by: bogentu

$
0
0
I am looking for a way to update the graphs that show results of the survey. We want to use this in a lecture hall to display a graph of the responses to a survey that is being done by students in the lecture. As results come in, we would like the graph to update so the results can be seen in real time. I can just refresh the graph in the admin interface, but that is a bit clumsy.

Is there a way to do this in LimeSurvey? Or is there another way to display these graphs through a module (like Drupal) or through an API call from a webpage?

How do I change the SURVEYURL variable? - by: vector

$
0
0
My surveyurl needs to be changed. Right now it reflects the local IP of the server. What's the best way to do that? I looked all over the limesurvey interface and didn't see anything immediately. I set the hostname on the server and created DNS entries as well in our DNS servers. Still shows as the local IP. Can you help me?

Thank you!

Version 2.00+ Build 130802

Need help in pre-filling text fields - by: Ben_V

$
0
0
Hello,

maybe it will be enough just adding newtest=Y parameter to your url...

http://localhost/limesurvey/index.php/174321/lang-en?newtest=Y&174321X1X10=12345&174321X1X11=John&174321X1X12=Smith

prefill questions based on attribute's in the token table - by: duvemyster

$
0
0
Thank you, Mazi.

I haven't figured out yet what I was doing differently yesterday, though this has been working perfectly for me each time today.

please help with assessment saving to db, i tried all possible ways! - by: itsme

$
0
0
done but i am not familiar with wiki, please check the same link and see if needs modification or something!?
thanks a lot guys, amit, DenisChenu, benoit, and Mazi :)

please help with assessment saving to db, i tried all possible ways! - by: Mazi

$
0
0
I adjusted it a little. Thanks for sharing your solution!

Need help in pre-filling text fields - by: aquarian

$
0
0
Thank you for the help :) it worked !!!

How do I change the SURVEYURL variable? - by: vector

Viewing all 17529 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>