Welcome to the LimeSurvey Community Forum

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

Search Results (Searched for: test)

  • FranzLimeS
  • FranzLimeS's Avatar
18 May 2023 16:07
Replied by FranzLimeS on topic Bedingungen in einer Matrix-Fragengruppe
Danke Joffm, hört sich ganz einfach an, beschäftigt mich dennoch oder deswegen intensiv. Ich bin aber auch noch ganz am Anfang.
OK: ich nehme die Funktion "count" um die Anzahl der Antworten zu zählen. Außerdem definiere ich den Bereich meiner Abfrage: Q00001 für den 1. Fragenblock und verbinde mit den Antwortoptionen "ganz wichtig = AO01" sowie "auch wichtig = AO02". Und ich definiere jeweils den Maximalwert AO01 ==1 sowie AO02 ==2. Schließlich verbinde ich die mit "and".
Das würde m.E. bedeuten count(Q00001.sq_AO01)==1 and count(Q1.sq_AO02)==2 und sollte dazu führen, dass der User bei den 6 Teilfragen nur 1x AO01 und 2x AO02 vergeben kann.
Meine Abfrage/Funktion habe ich der Frage-Validierungsgleichung zusammen mit einem Hilfetext abgelegt und gespeichert. Fazit: Ich kann nach wie vor alle Antwortoptionen (alternierend wie bei Radio Buttons zu erwarten) anwählen, lediglich der Hilfetext erscheint korrekt. Eine Einschränkung auf 3 Anworten o.ä. taucht nicht auf.
Ich habe außerdem die von Dir vorgeschlagene Funktion count(Q00001.sq_SQ001)==1 and count(Q00001.sq_SQ002)==2 auf oben skizzierte Weise getestet. Auch dabei passiert nichts. Mir scheint, dass ich hier noch einen grundlegenden Fehler mache.

Zur (inhaltlichen?) Frage nach der letzten Teilfrage: Ich möchte dem User einen Impuls geben, sich nochmals über seine Gewichtung/sein Meinungsbild Gedanken zu machen.

Franz
  • crossfor
  • crossfor's Avatar
17 May 2023 18:46
Imprimir PDF el cuestionario was created by crossfor
Buenas tardes

Estoy trabajando con PDFReport porque quiero que tras contestar una encuesta, las contestaciones, se puedan imprimir en PDF (hablo de una encuesta totalmente abierta y con un enlace genérico para todos los participantes de la misma).

Al instalar el plugin me veo con el problema que el plugin tiene que aparecer en el mismo grupo donde están las preguntas de la encuesta, sino aparece el error 500 con este texto 'La propiedad "QuestionAttribute".".gid" no se encuentra definida'. Por el tipo de cuestionario, necesito que haya un grupo en medio para calcular algunos datos que luego se ven reflejados en el PDF que quiero imprimir.

¿Alguien sabe como evitar esto o conoce otro plugin para poder lo que busco?

Gracias

    
  • esrold2020
  • esrold2020's Avatar
17 May 2023 18:44 - 17 May 2023 18:48
Bitte helfen Sie uns, Ihnen zu helfen und füllen Sie folgende Felder aus:
Ihre LimeSurvey-Version: Version 5.5.2
Eigener Server oder LimeSurvey-Cloud: Uni-Server
Genutzte Designvorlage: Erben
==================
Hallo ihr Lieben,

ich erstelle im Rahmen meiner Bachelorarbeit gerade einen zweisprachigen Fragebogen bei Limesurvey und komme an einer Stelle nicht weiter: Ich habe am Anfang meines Fragebogens 3 Filterfragen, um die Teilnahmekriterien abzufragen. Sollten diese fragen nicht "richtig" beantwortet werden, sollte die Person aus der Umfrage rausfliegen. 
Das funktioniert bei 2 der 3 Fragen auch gut aber die, die mir Schwierigkeiten bereitet ist eine Mehrfachauswahl-Frage (Typ: M). Es gibt dort 7 Antwortmöglichkeiten und nur eine ist richtig. Der Code des Fragenblocks lautet A02 und die richtige Antwort hat den Code 4. Ich möchte, dass wenn die 4 angeklickt worden ist, dass man weitergeleitet wird auf die anderen frageblöcke. Das passiert allerdings nicht. Jedesmal wenn ich es teste, überspringt das Programm alle Frageblöcke außer einen (warum auch immer). Ich habe es bisher mit folgenden Codes probiert:

 if(A02_4.NAOK, 0,1)  habe ich in einen extra Frageblock mit dem Titel "teilnahme" eingefügt als Gleichung und bei allen anderen frageblöcken dann als Bedingung teilnahme==1. Das hat nicht funktioniert.
Dann habe ich ((A02_4 == "Y") probiert. Auch das hat nicht funktioniert. Jedesmal wieder das gleiche Problem, dass der einfach darauffolgend alle anderen Frageblöcke außer einem überspringt. 

die beiden anderen Bedingungen habe ich so kodiert: ((A01 >= 16)) and (( A03  == 1)) und da funktioniert alles.

kann mir jemand vielleicht weiterhelfen?
Vielen Dank und schönen Abend 
  • DenisChenu
  • DenisChenu's Avatar
17 May 2023 11:15

I follow your guide to scan the file, but only show up those:



AND,I finally got it successfully by this:
  1. Download the orginal zip, and unzip it;
  2. Add <version>6</version>  into .xml file;
  3. Remove the "master" from the folder name,  and recumpress it to zip.
  4. Upload the zip file and install it in from configuration--->plugin.
Success!

In this way, the updateTokenByResponse will install in .../limesurvey/upload/plugin/ , I think it better because it will not be covered by the updating.

I tried the same way (step 2 and 3 above)  to upload the the zip by FTP to .../limesurvey/plugin/   the plguin show up in configuration--->plugin--->scan, and you can install it smoothly, So I think the code work to xml file is the key point.

I  will test the plugin function later. Thank you guys~ and hope this will help other friends  who need the same help!
 
It's great if you can make a Pull Request after :  gitlab.com/SondagesPro/TokenManagement/u...nse/-/merge_requests

I think it can work without any update too.
 
  • free521521521
  • free521521521's Avatar
17 May 2023 05:11 - 17 May 2023 05:38
I follow your guide to scan the file, but only show up those:



AND,I finally got it successfully by this:
  1. Download the orginal zip, and unzip it;
  2. Add <version>6</version>  into .xml file;
  3. Remove the "master" from the folder name,  and recumpress it to zip.
  4. Upload the zip file and install it in from configuration--->plugin.
Success!

In this way, the updateTokenByResponse will install in .../limesurvey/upload/plugin/ , I think it better because it will not be covered by the updating.

I tried the same way (step 2 and 3 above)  to upload the the zip by FTP to .../limesurvey/plugin/   the plguin show up in configuration--->plugin--->scan, and you can install it smoothly, So I think the code work to xml file is the key point.

I  will test the plugin function later. Thank you guys~ and hope this will help other friends  who need the same help!
  • free521521521
  • free521521521's Avatar
17 May 2023 05:01
Hi holch,
I need to test and figure out how it works, then I can redesign the survey. Maybe like a semi-open survey.

I am think abou the share the link which the participants can input the email first voluntarily, later I can sent the close email survey.

I am keeping updating the way of survey, and really thanks LS.
  • Joffm
  • Joffm's Avatar
16 May 2023 12:21
Replied by Joffm on topic queXML PDF mit mehreren Spalten
Hallo, Simon,
Du möchtest also die Papierfragebögen mittels eines Scanners und eines OCR-Programms einlesen?
Denn dazu ist dieser Ausdruck ja gedacht. Und Du hast Recht, hier muss man sehr stark auf die Struktur achten, damit der Scanner nicht durcheinanderkommt.
Du siehst ja, dass die Kästchen alle schön rechtsbündig angeordnet sind.

Also, damit musst Du leben.
Auf der anderen Seite hast Du doch bereits irgendwo Deinen Fragebogenentwurf als Word- oder sonstwas Dokument.
Den dann noch etwas "aufzuhübschen" ist sicher auch nicht so aufwendig, und das Ergebnis hat deutlich mehr "appeal" als dieses queXML-Ding.

Joffm
 
  • free521521521
  • free521521521's Avatar
16 May 2023 05:28
Oh Thanks!
I have downloaed the plugin as you suggested. But it can not install on LS6.0.6+230508, So I can not test it
  • holch
  • holch's Avatar
15 May 2023 19:06 - 15 May 2023 19:12
Replied by holch on topic Multiple Texto con respuesta de BD
Me imagino que estas usando tu encuesta con códigos de acesso, cierto?

Ya he visto que ya has creado los attributos 1 (A) e 2 (B).

Ahora, con {TOKEN:ATTRIBUTE_1} consigues inserir lo en las respuestas "default":
 

Otra opcion es usar una pregunta del tipo "equation" (formula?) para dar un valor a las cajas de texto, pero para esto la pregunta "equation" tiene que estar antes de la pregunta donde lo quieres inserir.
Algo como esto deberia funcionar.
Code:
TOKEN:ATTRIBUTE_2

He hecho un test y funciona. Importante: tiene que ser todo maiuscula.

He notado un "bug" en mi versión Version 5.6.5+230214. Cada vez que edito la pregunta y la salvo de nuevo, desaparecen las respuestas "default". Voy a hacer un update y ver si persiste.

En anexo una versión de tu encuesta que funciona como lo querias.



 
  • KaryG
  • KaryG's Avatar
15 May 2023 16:14
I am having problems with validation. I can't understand what is wrong. I am attaching a screenshot of the problem and the file of the test survey.


Thank you for all the assistance!
 

File Attachment:

File Name: limesurvey...15-4.lss
File Size:60 KB

 
Displaying 1111 - 1120 out of 1120 results.

Lime-years ahead

Online-surveys for every purse and purpose