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

Pre Sale Questions - by: Joffm

$
0
0
Some more links that may be of help.
https://manual.limesurvey.org/Participant_settings#Enable_token-based_response_persistence

https://manual.limesurvey.org/Participant_settings#Allow_multiple_responses_or_update_responses_with_one_token

A more sophisticated way to send automated mails:
https://gitlab.com/SondagesPro/mailing/sendMailCron
Of course you may develop your own cron-based application to send invitations.

This could be of interest though seems to be broken at the moment.
https://gitlab.com/SondagesPro/managament/autoCommentIterativeQuestionnaire

Query the hosted LimeSurvey sql database - by: christianlangkamp

$
0
0
Hi Jelo
This is great - thanks for pointing to this. R and Python might be enough, though a KNIME node (maybe even using one of those packages) might be even better.
I will put it onto the KNIME Forum.
Thanks

Exclude Expression manager 'Questions' from Question Count - by: tpartner

$
0
0
No, that option is not available.

Personally, I have no use for the question count or question numbering "features" as they are totally misleading in surveys with conditional questions (which most have).

Exclude Expression manager 'Questions' from Question Count - by: Joffm

$
0
0
1. Don't show it.
2. In case you are willing to give a hint, insert it in the welcome message.
"This survey has 32 questions"

Pre Sale Questions - by: Joffm

$
0
0
Hi,

Do i understand you right that Limesurvey dont have a visualization feature for the survey results ?

The built-in "statistics" is only to have a rough overview during the survey. Better to use your own software.

Can you send an email to the to the participants to remind them in the backend ?

Of course you can send invitations and reminders, but you have to start it by clicking a button.

Is there a list of all participants with their Email Adress?
Does the users register in order to do the survey?

Up to you, if you want to have a list there will be a list.
There are several ways to run a survey.
  • Open survey: Anybody who has the link may participate
  • Survey with registration: Anybody who has the link and wants to participate has to register. He will get his credentials by email.
  • Closed survey: You have a predefined list of potential participants. They get an invitation with their credentials by email.
Anyway: An email address is esential.

Best is. Read the manual and try yourself in the demo installation.

Joffm

Pre Sale Questions - by: holch

$
0
0
I think Joffm summed it up very well.

But keep in mind, here in the forum we are mainly giving support for the community edition of LS (same functionalities) but not the SaaS Version provided by Limesurvey GmbH.

But the Free Version of the SaaS offer has very few limitations in terms of features (of course no own domain). So you can try and test all functions. Only real limit (as far as I know): You can't have more than 25 Survey responses per month.

Exclude Expression manager 'Questions' from Question Count - by: DenisChenu

User Management - New User created Password is not set anymore in v4 - by: tpartner


Exclude Expression manager 'Questions' from Question Count - by: tpartner

$
0
0

@Joffm : if you can add a radio hidden question type ?

I find that equation and text-display questions are not included in the count regardless of whether they are hidden via question settings, however, other questions (like list-radio) are always included in the count, even when hidden via question setting.

- bugs.limesurvey.org/view.php?id=15884#c56074

Remove Comments from multiple choice graph - by: DenisChenu

$
0
0
File have moved, but answer is same.

No clean plugin/modules/etc ... solution

Hack the code

Remove Comments from multiple choice graph - by: psyray

Dynamically render Survey Group styling based upon flag or variable - by: aellison9

$
0
0
TPartner, thank you for the reply.

I currently have PHP code that extracts query string parameters from the inbound URL and stores the values in session so I have access to them throughout a survey. This lets me know what the desired "look and feel" parameter should be without having to us a hidden question on every survey constructed.

I could write a bunch of CSS classes to be used for each look and feel but I was hoping to utilize the current structures in LimeSurvey which already accomplish Theming.

I was hoping for an extensible way to "swap" the "light" survey group for the "default" survey group when the survey request is made. Maybe it's a pipe dream and the only way is to re-write all the CSS available within the SurveyGroup but I am ever the optimist.

Thank you again for your reply. I do appreciate your time and willingness to help.

I need help reporting on a survey with large numbers of answers in an array - by: wstone

$
0
0
Looks like your're right it works fine in my vm. Thanks for the help I really appreciate it.

Setting conditions for multiple choice options - by: lfanfoni

$
0
0
In attacchment you find a sample group that you can import and evaluate the solution.
The equation I use for validation is:
((count(self)==2) AND (is_empty(Outlet_Adont.NAOK))) OR ((count(self)==1) AND (Outlet_Adont.NAOK=='Y'))

where "Outlet" is the question_code and "Adont" the subquestion_code for "Don't know".
To specify other outlet, I used a conditioned text question.

Relevance Equations for Answer Options - by: Joffm

$
0
0
Again I say:
Better you send a sample file, that we understand better.

I have not the least idea what you wanted to say in the last post (probably because of the language gap).
But the wish of having answer option relevance on sinple punch questions is often discussed.
As you might see, we have relevance on subquestions, but not on answer options. That's the difference.

Joffm

Problem with question validation equation - by: ch123

$
0
0
Hey,

I'm trying to use question validation equation in order to "force" participants to write at least 50 characters in an open text field.
It's working when writing the sentence in one line. But if you press enter and want to write in the next line, there is an error (even if there are 50 characters in the first line).

This is my code so far:


Probably have to add some expression for the lines? But I don't get it how to do it...
Thanks for any help :)

Setting Default Value with Calculation from Previous Fields - by: meyerlemon

$
0
0
Thank you so much for your help! I have never used equation question types before, and was just curious - in order to save just the BMI value, would I copy {weight/(height*height)} in the Equation field under Logic > Equation? I'm just trying to ensure that's the value saved.

Create Array 5 Point Choice with Random number, category and maximum score - by: tpartner

$
0
0
Nice!

One suggestion that would allow you to place the hidden control question in the same group as the array...

Change this line:
$('#question{QID} input[type="text"]').val(anumbers);

To this:
$('#question{QID} input[type="text"]').val(anumbers).trigger('keyup');

This will fire Expression Manager after loading the hidden input, triggering relevance.

I need help reporting on a survey with large numbers of answers in an array - by: holch

$
0
0

As for importing it I see now what was causing that. I had to change an option in my php.ini file to import so many answers. max_input_vars = 15000


Oh, OK, I thought my max_input_vars was reasonably high. But I am sure it is not at 15000. ;-)

Setting Default Value with Calculation from Previous Fields - by: Joffm

$
0
0

in the Equation field under Logic > Equation?

Do you mean the "question validation equation"?
This is something different. Here you enter an equation to validate the question, e.g. (Q1<10) OR (Q1>60), to get only very small or very high ages, or whatever.

Your equation you enter in the question text of the equation question.


Joffm
Viewing all 17529 articles
Browse latest View live


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