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

Assessment advanced setup - by: Dmitry_f

$
0
0
Please help!!!
* I am nor programmer, it's really hard to understand how does it works((((.

Simple 1 page survey - by: charleslcso

What data format for "add_response" parameter (RPC) - by: mfaber

$
0
0
Will do.
I just want to finish writing a script that can handle uploading multiple response files and avoids uploading data that already exist in the LS DB. It was 15 years ago that I last worked as a programmer and I am just learning a bit of PHP through limesurvey. So everything is going a bit slower than I want it to be.... :-).

Setting user permissions for a single survey - by: ResearchOnBlogs

$
0
0
Not yet in the UI. You can try in config-defaults this "usercontrolSameGroupPolicy" . Set it to false.

Is it possible to modify the public landing page. - by: Ben_V

Can I assign values to an array? - by: rodriguezm1

$
0
0
I have an array question called Q1. It has 3 subquestions: sq1, sq2, sq3. I also have another question, OTHERQ.

I want to be able to assign values to Q1_sq1, Q2_sq2 and Q3_sq3

What I'd like to do is an if statement. Something like

{if(is_empty(OTHERQ),Q1_sq1=0,Q1_sq1=100}
{if(is_empty(OTHERQ),Q1_sq2=0,Q1_sq2=100}
{if(is_empty(OTHERQ),Q1_sq3=0,Q1_sq3=100}


This doesn't seem to work if I type it into an "equation" type question. Am I doing something wrong? What do I have to do to make this happen?

Scrolling to mandatory question errors - by: psoo

$
0
0
Hi,

When filling in the survey a respondent skips a mandatory question and advances to next group (or submits the survey) - Limesurvey outputs errors to non-filled questions (or popup, if configured accordingly); does anybody know is it possible to configure LS to scroll automatically to a specific non-filled questions that caused the error?

Many thanks for any kind of feedback!

skip email check if already exists - by: ocean

$
0
0
Hi,

sometimes there are more people with the same email-adres
how can I manage that when using registration is required
or when sending tokens to users

Best regards
Ocean

Nagivation delay on 2 minutes - by: arto78

Sum of Sub-question - by: rodriguezm1

$
0
0
I was able to answer my own question.

Instead of:

{if(sum(that.modes_sq1.NAOK) > 1, 'more than one', 'irrelevant')}

I should have used:

{if(sum(that.modes.sq_sq1.NAOK) > 1, 'more than one', 'irrelevant')}


the "sq" after modes is a reserved term.


So the in general the function would be

Sum(that.questionName.sq_subquestionName.NAOK)

Javascript and replacing values - by: rodriguezm1

$
0
0
In other words, my issue is that array filters are binary. It filters only if the sub-question for a previous answer has, or does not have, an answer.

I am trying this workaround so that I can have a more conditional array filter. So that way, its an array filter based on an if() statement, not just whether or not there is a value.

Suppose I have an array of 5-point questions. I want a subsequent array filter to only show questions rated 4 and above.

I can't do that with a simple array filter. I have to create an interim array, fill in the array with binaries, and then filter based on the interim array.

See what I'm doing and how I'm thinking?

Survey order, split, merge and various newby questions - by: ResearchOnBlogs

$
0
0
is it possible to always start with survey 1, but that surveys 2 and 3 appear randomly for each person that answers? If yes, how?
Yes, with a custom redirect script. (PHP/Script)
as the surveys might feel a bit long (at least to some), is it possible to create pages of, say, 10 questions each? If yes, how?
What about the progress bar?
would it be adviseable to merge the surveys into one big survey and create the pages (groups of questions as stated above) within this big unique survey? If yes, how?
Mergin automatically ? NO. You could import the question groups into the parent survey.
is it, conversely, possible to split a survey into, say, two (or more), separate surveys? If yes, how?
No
is it possible to extract the data, like .CSV, in order to analyse them in a statistics application (RStudio, Statistica, etc.)? If yes, how?
Yes

You should play around with the LS Demo:
www.limesurvey.org/de/demo

Cheers Kai

can I export all answers using rpc (remote control)? - by: bebs

Array Filter and Conditional Statements - by: rodriguezm1

$
0
0
My question:

Q1 is a 5-point array question. It has 3 subquestions.

Q2 is a yes/no array question. It also has the same 3 subquestions as Q1, because I am going to use a filter.

I want Q2 to filter on Q1.

But I want it to only filter if the answer to the subquestion in Q1 was a value >=4.

How do I do this?

Help! Javascript syntax for definitions - by: rodriguezm1

$
0
0
I have a multi-text question, Q1. It has a subquestion, sq1. Q1 is hidden.

I want to use java to insert an answer to Q1_sq1.

What is the syntax?

I've tried
 
document.getElementById('{Q1_sq1}').value = 'new text';
$('#answer{Q1_sq1}').val() = 'new text';
$('#answer{Q1_sq1}').text() = 'new text';
$('#answer{Q1_sq1}').val('new text');
 

None of this works. I would really appreciate your help in telling me how to do something that should be so fundamentally simple, which is define a variable. I don't understand why this doesn't work in LimeSurvey easily.

How to reorder question between groups - by: holch

$
0
0
I don't think that this is "very basic stuff", but rather quite advanced stuff that 99,9% of all users will never need. And of course no one is forced to use Limesurvey. There are a bunch of commercial tools out there.

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?

Simple 1 page survey - by: charleslcso

$
0
0
OK. I think I get the hang of the EM.

I think I need to check if a answer is selected "YES" (in my questions), if yes, then print ProductID.

Show Full responses in Completed page - by: DenisChenu

$
0
0
Hello,

Maybe you can use {SAVEDID} but it take the id if user don't finish him survey.

Alternative solution: use ajax on end message or your own script at endurl.

Denis

dynamic rows in array - by: DenisChenu

$
0
0
It's possible, but have to work hard on jquery/javascripting.
  1. Add a multi text question
  2. Hide this question in javascript
  3. Move each input.text of this question in answer part of the array
  4. Use/adapt existing workaround

Denis

Use Multiple Templates in the same survey - by: Mazi

$
0
0
Unfortunately, Limesurvey doesn't offer such a browser switch yet. The workaround is to simply create a copy of your survey and assign that copy the iphone optimized template.

You can also put a link on the welcome screen of the base survey, directing the smartphone users to that special version of the survey.

Furthermore, it makes sense to run the smartphone survey in question by question mode so users don't need to scroll that much.

Later you can easily merge all results at one survey using Limesurvey's VV export/import feature: docs.limesurvey.org/Exporting+results&st...Export_and_VVImport_
Viewing all 17529 articles
Browse latest View live


Latest Images

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