Welcome to the LimeSurvey Community Forum

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

Search Results (Searched for: multiple)

  • Joffm
  • Joffm's Avatar
17 May 2024 20:03
Replied by Joffm on topic Multiple Choice Test erstellen - Basics
Hallo, Jörn,
gut, Du hast also Deine Fragen angelegt und willst nun wissen, wie Du davon 30 zufällig auswählst und anzeigst.
Das ist ziemlich einfach.
Du findest es in meinem "Tutrial 4: Gleichungen, Zufall,...", Kap. 3.1.

Das ist jetzt zwar ganz schön.
Aber jetzt kommt die Crux

Zum Üben möchte ich, dass dem TN nach jeder beantworteten Frage angezeigt wird, ob er sie richtig oder falsch beantwortet hat.

Und das geht zunächst einmal nicht so wie oben beschrieben; Du müsstest hierzu ja Gruppen von zwei Fragen bilden, die wiederum in die zwei Gruppen gesteckt werden. Geht nicht.

Ich habe es aber so verstanden, dass die Teilnehmer zunächst einmal ein paar Beispielfragen sehen (mit Ergebnis) um dann den "scharfen" Teil zu durchlaufen.
Das kannst Du ja einfach machen. 
Nimm fünf Gruppen mit jeweils den beiden Fragen (also Fragenfrage und Antwortfrage) und gibt ihnen dieselbe Randomisierungsgruppe

Kleine Schlussbemerkung:
Der Begriff "multiple choice"  ist im deutschen ja ziemlich mehrdeutig. Ist nur eine Antwort erlaubt, oder mehrere?
Ist wie "Home Office". Der Deutsche denkt sich etwas knackig klingendes aus, egal, was der Engländer darunter versteht.
Dort bedeutet "multiple choice" nämlich ganz klar: Eine Antwort; sonst heißt es "multiple response".
Und zur weiteren Verwirrung gibt es noch "single choice" = eine Antwort, "multiple choice" = mehrere Antworten

Ich vermute jetzt einmal - wegen Deines Begriffes "Teilfragen" - dass mehrere Antworten gewählt werden können.
Das spielt hier zwar keine Rolle; ich wollte es nur erwähnen, da es oft zu Missverständnissen führt.
Daher immer besser den Fragetyp nennen.

Bei weiteren Fragen:
Erstelle einfach einen kleinen Prototypen mit einigen wenigen Fragen, aber der finalen Struktur und schicke den lss-Export.

Joffm


​​​​​​​
  • jgorres
  • jgorres's Avatar
17 May 2024 18:51
Bitte helfen Sie uns, Ihnen zu helfen und füllen Sie folgende Felder aus:
Ihre LimeSurvey-Version: LimeSurvey Community Edition Version 6.5.4+240422
Eigener Server oder LimeSurvey-Cloud: eigener Server
Genutzte Designvorlage: fruity
==================
Moin,

ich möchte einen Test (ca. 250 Fragen, multiple Choice) erstellen.

Jeder TN soll eine individuelle und zufällige Auswahl von 30 Fragen präsentiert bekommen. Die angebotenen multiple Choice Antworten sollen bei der Darstellung in zufälliger Reihenfolge präsentiert werden.

Zum Üben möchte ich, dass dem TN nach jeder beantworteten Frage angezeigt wird, ob er sie richtig oder falsch beantwortet hat.

Bei der echten Prüfung soll die Auswertung aller Fragen erst im Anschluß gemacht werden.

Das Anlegen der Fragen und Teilfragen ist ja einfach, aber wie geht es danach weiter?

Ich habe das Wiki/Manual durchgeschaut, aber nicht so recht gefunden, wie ich weitermachen muss. Könnt ihr mir bitte helfen?

Danke und LG
Jörn.
  • ployrich
  • ployrich's Avatar
17 May 2024 09:17
Thank you for your answer.

Yes I played around some more and "found out" or strengthen my assumption that it is connected to the relevance status of the subquestions. And that is baked way deep into LimeSurvey to fiddle with it.
I built a custom JS function to handle the exclusivity to fit our desired way.

 
  • Joffm
  • Joffm's Avatar
16 May 2024 19:35
Hi, I do not see any issue with (as I wrote "You have to use NAOK")
1. validation equation
Q18_SQ005.NAOK == "Y" or count(self.NAOK) == 2 or count(self.NAOK) == 3

2. validation tip
{if(count(self.NAOK) !=2 and count(self.NAOK) !=3 and Q18_SQ005.NAOK !="Y","Please, select 2 or 3 options","")}
Of course you can improve it.





 

File Attachment:

File Name: limesurvey...53_J.lss
File Size:47 KB


And you should change the "max.value" in Q18A to "count(that.Q18)"

Joffm
  • blocka
  • blocka's Avatar
16 May 2024 19:03
So I tried what you suggested, but (and maybe I misunderstood what I had to do), now it appears the only way to submit the question is to choose SQ005 (None...).

See: 1drv.ms/v/s!ApZ2h3V5HB1io_94RxSAcAipRnNE2Q?e=hB59EU

Maybe if it you have it working correctly, could you share back the survey so I can see what I've done wrong?
  • holch
  • holch's Avatar
16 May 2024 17:29
Code:
Q18_SQ005 == "Y"
--> Works fine.
Code:
count(self) ==2
--> Works fine.
Code:
Q18_SQ005 == "Y" OR count(self) ==2
--> Problem
  • holch
  • holch's Avatar
16 May 2024 17:24
I deleted the check for 2 or 3 items checked and left only the exclusive check. I this case, if you check the exclusive option you can also continue. So there must be some error with the OR.
  • holch
  • holch's Avatar
16 May 2024 17:19
Just tested it and I confirm. And to be honest, I don't have a solution (yet). However, what I noticed:

Look at your video. When you check 2 or 3 answers, the text disappears and the little (!) turns blue.

But if you mark the exclusive option, the text disappears, but the symbol is still red.

Actually, thinking about it, you shouldn't use any equation in the message field. The message only appears if they conditions are not met. So you can just put the text, without having to taylor it, I think. So at the moment, there is something wrong with your Question validation equation, but the text disappears, because you have an equation in your Question validation tip. So the text disappears, but the warning is still there.

That is where we have to start from.
  • holch
  • holch's Avatar
16 May 2024 16:56
I think this is the normal behavior, because when clicking the exclusive option, all others are deactivated.

Easiest solution: Change it in the CSV.
  • blocka
  • blocka's Avatar
16 May 2024 16:00
I've tried that, but alas, seems to make no difference. I figure a screen movie might help, so if you have 90 seconds, this explains what I'm trying to accomplish (and provides a review of how I have my validation equation set up):

1drv.ms/v/s!ApZ2h3V5HB1io_91YXC0-7HnU7mfUQ?e=VUVWB2
  • ployrich
  • ployrich's Avatar
16 May 2024 11:22
Please help us help you and fill where relevant:
Your LimeSurvey version: 6.3.1
Own server or LimeSurvey hosting: own server
Survey theme/template: own based on skelvanilla
==================
Hi all,

My question revolves around a multiple choice question with one exclusive option. If I check any of the not exclusive options my exported csv data looks as expected (yes for the chosen, no for the not chosen).
But if I check the exclusive option I get: Yes for the exclusive option and N/A for the others.
Is this behavior wanted?  and if it is wanted, is there an "easy" way to change that.

Thanks in advance
  • Joffm
  • Joffm's Avatar
15 May 2024 21:57
Use .NAOK
  • holch
  • holch's Avatar
15 May 2024 21:34
Let me get this straight:

You can have either none of the options, or need to have 2 or 3.

So just one is not an option? Sounds quite odd to me somehow. Can't imagine where this might make sense.
  • blocka
  • blocka's Avatar
15 May 2024 21:19
Thanks muchly for the suggestion. I tried adding the validation equation, but I still cannot select "None" (Q18_SQ005).
I've attached the survey in the event you might have time to take a peak...
  • Joffm
  • Joffm's Avatar
15 May 2024 20:45
Hi,
I should say:
A question validation like (Q01_9 = exclusive option)
Q01_9=="Y" or count(self)==2 or count(self)==3

and an tip like
{if(count(self)!=2 and count(self)!=3 and Q01_9!="Y","Please, select 2 or 3 options","")}
Displaying 1 - 15 out of 761 results.

Lime-years ahead

Online-surveys for every purse and purpose