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

Gender Default values - by: holch

$
0
0
One other hint: clean your example survey down to only the essential requirement to test what you are trying to do. There are loads of other questions before even getting to the gender question. So for us to test it, it takes unnecessary additional time.

As it heavily depends on token tables that I don't have, I can only have a guess:
Have you tried to include this into a hidden equation type question? If included into the question text of course it will give out only a text.

How to remove LimeSurvey and Version Info from Footer - V3.7.1 - by: holch

$
0
0
Well, I assume he/she wants to "white label" Limesurvey, so their employees (or clients) don't know it is Limesurvey. In this case they probably also don't want them to ask here in the forum, but rather give support themselves. Given that they struggle to remove the footer, probably still not a good idea. ;-)

Display Question text above an array instead of left of it - by: adieball

$
0
0
that did the trick, thanks a lot

Best way to analyze a ranking question - by: holch

$
0
0
I don't think there is one best way. It depends a little bit on how much weight you want to give each position.

E.g. you could give points from 5-1 for the first positions and then see the total score or average of each option.

So everytime an option was ranked first you give 5 points, for 2nd 4 points, etc. Or you could say that being number one is worth much more than second or third, so you could say:
1st == 10 points
2nd == 6 points
3rd == 4 points, etc.

As ranking doesn't mean that the difference between 1st and second is the same it is quite risky to create averages. Because the distances between first and second place might be enormous, or they might actually be quite close together.

1....................2.3.4.5
1.2.............3........4.5
1.2.3.4....................5

Those are all totally perfect positions for a ranking from 1-5. So how will you attribute points now for creating an average?

And for each respondent, this scale might actually look totally different. As long as you did not let them position the options on such a scale, but just ask for the positions, creating averages is extremely risky, because it might lead to a totally wrong impression. Therefore, in my opinion, rankings alone are often not very helpful.

Conditional setting based on set of questions - by: jimdavies

$
0
0
LSS attached.
Sorry, I'm not sure where to see the version of LS I'm using.

Gender Default values - by: tpartner

$
0
0
I have already pointed out in another post that setting a question with Expression Manager MUST be done in an equation question.

How to remove LimeSurvey and Version Info from Footer - V3.7.1 - by: tpartner

Prefill only one row in array - by: hamiltonand

$
0
0
Thank you Tony!!

That's exactly what I need!!

And sure, I will update to the latest version as soon as possible!! :)

Javier.

Question validation equation error - by: waitz

$
0
0
The question has 5 subquestions, and the user has to fill in at least one of the subquestions, and this subquestion has to fullfill the requirement of being an international phone number.

File Attachment:

File Name: limesurvey_question_703.lsq.txt
File Size: 8 KB

Multiple choice with comments (numbers only) - by: krosser

$
0
0
Okay, so I've figured out that it should be a much more sophisticated code in the validation equation and also in the tip. But I can't figure out the correct syntax for the validation tip.
For example, for just the first answer option:


(is_empty(Expertise_SQ001comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ001comment.NAOK))

{if((is_empty(Expertise_SQ001comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ001comment.NAOK)), ', 'test message...')}



And I get this



Any ideas guys what should be corrected in the validation tip to make it visible as only "test message"?

Conditional setting based on set of questions - by: jimdavies

$
0
0
I added the relevance question but now question 3 never displays. Attachment shows what I did

XAMPP Limesurvey Surveys - by: holch

$
0
0
If everything runs within the same network and your computer is reachable from this network and has a fixed IP: yes.

However, depending on the configuration of your machine and the network, it might not be possible. You just need to find out what your IP is (the local one, speak to your network administrator or try something like this: lifehacker.com/5833108/how-to-find-your-...-external-ip-address ).

Your IP must be fixed and ideally your machine should be connected via LAN, not WLAN. But I think your network/system administrator should be able to help you there. This has little to do with Limesurvey itself, but rather with your network and the configuration of your machine (e.g. firewall, etc).

Multiple choice with comments (numbers only) - by: krosser

$
0
0
Well, I've managed to fix it through trial and error.. So the code should be like this

{if(is_empty(Expertise_SQ001comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ001comment.NAOK), '' , 'Only numbers are allowed')}

But it's only for the first comment box. I haven't figured out the syntax for applying it to other comment boxes yet.

How to Insert Answer via Javascript - by: tpartner

$
0
0
Sorry, I have no clue what you are trying to do. Why are you inserting a text input onto an existing form?

Conditional setting based on set of questions - by: tpartner


Multiple choice with comments (numbers only) - by: krosser

$
0
0
Alright, so I've figured it out... and in case someone would need it, here's how I did it.

A screenshot from this example in the manual has helped.

It's basically copying the code for each row and changing subquestions' codes.

So in my case, for the Question validation equation:
(is_empty(Expertise_SQ001comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ001comment.NAOK)) and (is_empty(Expertise_SQ002comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ002comment.NAOK)) and (is_empty(Expertise_SQ003comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ003comment.NAOK)) and (is_empty(Expertise_othercomment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_othercomment.NAOK))

and for the Question validation tip:
{if(is_empty(Expertise_SQ001comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ001comment.NAOK), '' , 'Only numbers are allowed')}
{if(is_empty(Expertise_SQ002comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ002comment.NAOK), '' , 'Only numbers are allowed')}
{if(is_empty(Expertise_SQ003comment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_SQ003comment.NAOK), '' , 'Only numbers are allowed')}
{if(is_empty(Expertise_othercomment.NAOK) or regexMatch('/^[1-9][0-9]{0,4}$/', Expertise_othercomment.NAOK), '' , 'Only numbers are allowed')}

Log-off from survey - by: poojadure

$
0
0
Hi i want an log-off button on top right of the navigation bar but don't know how to add it and even want to terminate the session of the logged in participant but want to persist the response, i've activated Enable token-based response persistence: setting from participant setting.

Please help.

How to Insert Answer via Javascript - by: b1994mi

$
0
0
What I was trying to do is actually get the coordinates, postal code, and address from ubilabs geocomplete.

I thought that if I can find the answer to problems above, I can find the answer for my problem too. Basicly, I need to copy the values to Limesurvey's text input and make Limesurvey recognize the value/input.

This is what my real code looks like:


And here is how the question looks like:

Survey questions relationship, how to? - by: karlolm

$
0
0
Hi everyone, I started using a self-hosted lime survey environment and its amazing, it has a lot of features and options and Im doing it very well.

I have a survey in which Im asking three basic and short questions about a school, the thing is the first question is related of which section of the school (low school, middle-school, high-school) the respondent belongs to..

I dont know how to connect the results in order to show me the other questions based on this first one, for example if second question is ¿How do you feel about bla bla bla.....? I would like to know how the results of this question by section (again, based on first question). So I would get results such as: How do they feel in low-school only.

So, can I do this? how? thanks a lot.

Survey questions relationship, how to? - by: karlolm

$
0
0
I've thinking about this and got into a temporal solution, if this can be done via lime survey awesome, thats ok. But if not, I can export survey data into excel and with a formula display data how I want it, what you guys think?
Viewing all 17529 articles
Browse latest View live


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