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

Share preview with others - by: DenisChenu

$
0
0

Glassman wrote: I am attempting to share a survey that's under development but the url returns a 404 to anyone without an account. How do I work around this?

Are you sure it's a 404 ?
Can you show a screenshot ?

(it must be a 401 if there are no issue)

Sending reminders with anonymous tokens - by: Emilia_

$
0
0
Excellent! Thank you both for your help! This is exactly what I want to do. Keep the survey closed but responses anonymous.

Equal Number of Random People in Each Group - by: yagmurkiper

$
0
0
I see and now understand the difference between them clearly. I will also delete those quotes. Thank you so much.

I think I could not express myself enough, but my concern is more like this: let's say my group 2 reached enough number of people, so I will deactivate it. I will write O under group equation and all the questions in Group 2 will be deactivated, which is what I wanted. However, I did not know what you said at the beginning, so I also set the same relevance equation for each question (in total: 128 questions) in Group 2. Do I have to change all those equations to zero as well? Or changing only group equation to zero but keeping the relevance equation as ((random==2)) under each question would be enough? I am afraid there will be a clash or something and deleting them from each question will also be tiring. What would you suggest?

Thank you so much again,
yk

Age, Sex, Marital Staus etc. - by: Joffm

$
0
0

Any suggestions for easy to use analysis software?


Difficult to answer.
Which statistical tests do you need?
Which tools do you have already?
What status do you have, meaning "are you allowed to use a student's version of a software"?

This we should discuss in the German part.
If you are interested, open a new thread there.

Joffm

BTW: If Tony hadn't told you to use the correct part of the forum, T'd done it.

Share preview with others - by: tpartner

$
0
0
Yes, that is the usual workflow. Note that any data collected in testing will be lost every time you deactivate.

For Multiple Choice Questions, can the sub questions takes x out of y answer - by: tpartner

$
0
0
Another JavaScript solution...

- Place a multiple-choice question with the same sub-questions before your question.
- Randomize the sub-questions in the new question.
- Hide the new question with a CSS class "hidden".
- Place an array filter on your question based on the new question.
- Insert the script below in the new question. It will check the first "numberToShow" of sub-questions in the hidden question causing the corresponding sub-qustions to be shown in your question.

<script type="text/javascript" charset="utf-8">
 
	var numberToShow = 5;
 
	$(document).on('ready', function(){	  
		if($('#question{QID} input:checkbox:checked').length == 0) {
			$('#question{QID} input:checkbox:lt('+numberToShow+')').each(function(i) {
				$(this).nextAll('input:hidden').val('Y');
				$(this).prop('checked', true).trigger('change');
			}); 
		}
	});
</script>

Sample survey attached:

File Attachment:

File Name: limesurvey_survey_881714_2020-02-10.lss
File Size: 37 KB

Store Value of JS-Variable in hidden Question - by: tpartner

$
0
0
Well, you could interrupt the submit process something like this but if some of the questions are on that page the Expression Manager result(s) may be wrapped in a <span> element so you will have to parse it out of that.

<script type="text/javascript" charset="utf-8">
 
	$(document).on('ready', function(){	  
 
		// Interrupt the submit
		$('#limesurvey').on('submit', function(e) {
 
			// Load the hidden input
			var myCalculatedValue = "{sum(q1, q2, q3, q4, q5, q6, q7, q8, q9, q10)}";
			$('#question{QID} input:text').val(myCalculatedValue);
		});
	});
</script>

Unify provided response options in a filtered questions - by: jelo


Modifying admin themes without self hosting - by: surrogatekey

$
0
0
Hi,
I'm using LimeSurvey Expert and wondering if there's a way to modify an admin theme
Thanks -

Modifying admin themes without self hosting - by: surrogatekey

Store Value of JS-Variable in hidden Question - by: Indispirit

$
0
0
Thanks Tony, good suggestion, will look into it.

For Multiple Choice Questions, can the sub questions takes x out of y answer - by: etc4xx

$
0
0
Hi Joffm

i have been trying with the script. may i know what are the connecting points between the script and the questions? (i.e. to link the choice of subquestions to the question). Can you show which part of the script i should alter? (if it is possible)



If i intend to do a 10 quiz questions, which consist of single choice questions, multiple choice questions, do i:
a) have to have 1 main script and link it to other question (assuming it shares the same set of answer)
b) have several scripts to cater each of the question. (different answers)

I am interested in the script method, but im having almost no knowledge with regards to it.


Secondly, with regards to the simple method, if the choice of answers is consisting non-numerical option (i.e. yellow , green, red, blue & purple)



Thank you for your time and it is much appreciated.

Regards,

Can I INSERTAN a value from Other (please, sepecify) text field? - by: Adrien12345

$
0
0
(I am on Limesurvey Version 3.21.6+200121)

Hi everyone !

So I have question Q5 that is a multiple answer question with an "other, please specify" option.
I would like to insert the answer from this question into Q6 question text.
So I use the fonction INSERTANS as follow:

Q6 question text + {INSERTANS:875715X735X71091} {INSERTANS:875715X735X71092} {INSERTANS:875715X735X7109other}

It works with the predefined answers, but not with the "other, please specify" answer.

with {INSERTANS:875715X735X7109other}, I just get "Other" instead of the text.

Can someone help me with this ?

Kind regards,
Adrien

Can I INSERTAN a value from Other (please, sepecify) text field? - by: Adrien12345

$
0
0
{Q5_other} worked perfectly, thank you !!

For Multiple Choice Questions, can the sub questions takes x out of y answer - by: Joffm

$
0
0
Hi,
if you talk about the script I provided:
You see there is one line
for (var i = 1; i < 51; i++) {
This is to create an array with total numbers from 1 to 50. If you have less or more, adapt.

There is another line
anumbers = arr.slice(0,10).join(',');
Here you set the numbers of subquestions you want to show.

Then you get a string in the hidden question Q0 like #,10,49,23,1,32,...
Therefore you may comment "//" the line
$('#question{QID}').hide();
to make this question visible.

And in your question there is a subquestion relevance like strpos(Q0,",1,")>0
Meaning: If the string ",1," is in the calculated random string, the subquestion is displayed.
Read about "strpos" in the manual.

(2269) Failure opening file SPSS 26 - by: sergioquerido

$
0
0
Thank you very much for your useful solution.

Separate Send from and Reply to email addresses - by: kclingerman

$
0
0
Hello,

We are trying to find a way to have different emails for the sender and the reply-to address in our survey invitations. I have looked around on the forums, google, and in the Limesurvey UI and I haven't found what we need. Does anyone know how we can do this?

Thanks!

(2269) Failure opening file SPSS 26 - by: holch

$
0
0
Cdorin, this problem is most probably related to the wrong path entered by the user. This happens a lot. People do not adapt the path correctly and SPSS is complaining about it.

I am 99,9% sure that this has nothing to do with the Limesurvey export, but rather the wrong path to the file. I am no expert on this, but it seems like SPSS requires that you adapt a path in the files, just as Jelo highlights.

And the error message is clearly indicating this.

Separate Send from and Reply to email addresses - by: DenisChenu

$
0
0

cdorin wrote: Though you can create the feature request and if it is requested + easy to be implemented, we may take it into account (in LS 4 :) ) .

Please ...

Not a new setting used by only some people again and again ....

It's easily doable in plugin in 4.X, core plugin why not ... but not in all survey ... because really rarely needed

Aw: I know I can - but how to? Change the label for "Other" to something else - by: Joffm

Viewing all 17529 articles
Browse latest View live


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