Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Search Results (Searched for: multiple)

  • StabLab_DigitalThreats
  • StabLab_DigitalThreats's Avatar
21 Mar 2024 14:57
Minimum answers within question group was created by StabLab_DigitalThreats
Your LimeSurvey version: LimeSurvey Cloud Version 6.4.12
Own server or LimeSurvey hosting: Limesurvey hosting 
Survey theme/template: fruity_twentythree
==================
Hello,

I have a question group containg 21 "Multiple short text (Input on demand)" questions (each of these set to min 2 to max 4 answers). Participants should answer at least 10 of the questions (giving 2-4 answers for each) within the group before they can continue the survey,
How would I do that? I've dug around the forum and manual but couldn't find anything explaining how to do this. 

Thank you! 
 
  • holch
  • holch's Avatar
18 Mar 2024 15:59
Hmmm, I think this is referring to the multiple answer quection type, right?

Have a look how this is stored in the database. If someone ticks the check box, it gets a "Y". If it is not ticked, it is empty. So actually, there is no "N" anywhere. No and N/A is basically the same, because the answer option/ subquestion has been either marked ("Y") or not (empty).

Or are we really talking about the "yes/no" question type (that I never use).
  • Joffm
  • Joffm's Avatar
18 Mar 2024 15:39

this also for single choice for multiple choice what can you do for the same

What?
No matter if single or multiple.
y-axis: you use subquestion relevance
x-axis: the plugin.

Joffm
  • holch
  • holch's Avatar
15 Mar 2024 15:46 - 15 Mar 2024 15:46

and haven't really analyzed anything with it yet,


And you shouldn't. 

Limesurvey is primarily a data collection tool. Yes, it has a statistics part, but I don't think anyone should analyze their data via this tool. It is good to get a quick overview during field time, about what answers to expect. But for anything else you should use tools that are made for data analysis.
  • rbnbchr
  • rbnbchr's Avatar
15 Mar 2024 14:37
@tammo

Good point, I hadn't even thought about that.

"Since the answers are constantly on different questions..."

Are you referring to the additional individual response option that each respondent has, or generally these types of questions where it only appears if selected on the first question?

I would appreciate it if you could elaborate on this. I'm fairly new to limesurvey and haven't really analyzed anything with it yet, so I'd appreciate any input.
  • tammo
  • tammo's Avatar
15 Mar 2024 13:28
I am very curious how you will do data analysys on these questions.... Since the answers are constantly on various questions..
  • rbnbchr
  • rbnbchr's Avatar
15 Mar 2024 08:38
Apologies!

It has now worked flawlessly. Thank you very much! That's very cool.
Should I upload the lss file for future reference anyway, or is that not necessary?

Cheers!
  • Joffm
  • Joffm's Avatar
14 Mar 2024 19:47
This is the English part. So we have to write English.
But you may use the German part.

And it is the other way.
Follow the steps 
1. Add three subquestions to the last question,
2. pipe in the text of the second question {Q2_SQ001,...}
3. display them by subquestion condition (!is_empty(Q2_SQ001),...

Then  send the lss export of your survey (only these relevant questions)

Joffm
  • rbnbchr
  • rbnbchr's Avatar
14 Mar 2024 17:52
Vielen Dank für die Hilfe! :)
Wäre es möglich, Ihre Vorlage hochzuladen?

Bezüglich dem "dynamical display": Da werde ich mich mal schlaumachen, klingt interessant. Vielen Dank.

Danke und Gruss
  • Joffm
  • Joffm's Avatar
14 Mar 2024 16:31 - 14 Mar 2024 16:54
Add three subquestions to the last question,
pipe in the text of the second question {Q2_SQ001,...}
display them by condition (!is_empty(Q2_SQ001),...
 

I used multiple short text (not very practical imo,

What else do you consider better?
You can improve by the dynamical display.
Read my "Tutorial 2:", Chapter 3.4. in the German part of the forum (on one of the first 7 pages)  

Joffm

Warum muss ich wieder ohne Not auf Englisch antworten?
 
  • rbnbchr
  • rbnbchr's Avatar
14 Mar 2024 16:00
Please help us help you and fill where relevant:
Your LimeSurvey version:  Version 3.17.1+190408
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hello everyone,
I've four questions in my survey. If the participant selects "Ja" (yes) for a particular item in the 1st question, that item will be displayed in the 3rd and 4th for some follow-up questions (this has worked).

Now, for the 3rd question, I'd like to provide the option to list some additional items that I did not mention in the 2nd question. For this, I used multiple short text (not very practical imo, but I couldn't think of an alternative, maybe there are better ideas?).

Is it possible to use the answers from the 3rd question (if something is added) as additional inputs in the following 4th question (i.e. if something is written in a text field, it should be displayed under the regular elements listed in the last array question)?

I hope this clarifies my concern. Any help or insight would be greatly appreciated. 
  • holch
  • holch's Avatar
14 Mar 2024 15:49
Why not putting all milk brands into 1 multiple numerical question? For sure would be a lot more userfriendly for the respondent to fill and you can show how much they have already distributed from the 100%.

1. Main milk brand
2. Second brand
3. Third brand...
  • tpartner
  • tpartner's Avatar
14 Mar 2024 14:21
Replied by tpartner on topic How to use Vertical Silder
If you want to use a core multiple numeric question, there is a setting for slider orientation - manual.limesurvey.org/Question_type_-_Mu...lider_orientation.29

If you want the sliders side-by-side on larger screens, add some CSS like this to the question source:

Code:
<style type="text/css" data-author="Tony Partner">
    @media only screen and (min-width: 768px) {
        #question{QID} .answer-container .row {
            margin: 0;
        }
 
        #question{QID} .answer-container ul {
            display: grid;
            grid-auto-flow: column;
            grid-gap: 3px;
        }
 
        #question{QID} .answer-container li {
            display: block;
            padding: 0;
            border: 1px solid #e7e7e7;
        }
 
        #question{QID} .answer-container li > div > div label {
            display: block;
            margin: 1em 0 1.5em;
            width: 100%;
            text-align: center;
            padding: 0;
        }
 
        #question{QID} .answer-container li > div > div > div {
            width: 100%;
            text-align: center;
            padding: 0 !important;
        }
 
        #question{QID} .answer-container .ls-slider-answer-row {
            margin: 0;
            width: 100%;
        }
 
        #question{QID} .answer-container .slider.slider-vertical {
            margin-bottom: 1em;
        }
    }
</style>

 

Sample survey:  

File Attachment:

File Name: limesurvey...3-14.lss
File Size:30 KB


 
  • AmirahR247
  • AmirahR247's Avatar
14 Mar 2024 11:47
Please help us help you and fill where relevant:
Your LimeSurvey version: [see right hand bottom of your LimeSurvey admin screen]
Own server or LimeSurvey hosting:
Survey theme/template:
==================
Hi there,

Is there a way to have a maximum sum value over 2 separate questions?

The first question is a numerical input & asks the percentage of main milk brand usage (Milk 1), the next question is a multiple numerical input and asks the percentage of other milk brand usage (Milk 2, Milk 3 etc.).
How can I get the total usage percentage to not exceed 100%? So if in Q1 Milk 1 = 60%, in Q2 Milk 2 + Milk 3 should be forced to sum to 40% (Q2 should be 100%-Q1)

Thanks
  • tpartner
  • tpartner's Avatar
13 Mar 2024 18:30
You only enter the question code (ex. C1).

Answer codes in the ranking question must be identical to the sub-question codes in the multiple-choice question.
Displaying 166 - 180 out of 761 results.

Lime-years ahead

Online-surveys for every purse and purpose