0 votes
in SoSci Survey (English) by s174885 (145 points)
edited by SoSci Survey

Hi,

Is it possible to create various end pages that have various textual content, and that participants are directed to depending on their answer to a filter question?

Thank you in advance!

1 Answer

0 votes
by SoSci Survey (302k points)

No and yes: You can only have one true "last page" in the questionnaire.

But you can create additional pages, or even display content in a PHP filter that looks like a "last page".

if (....) {
  text('finish01');
  buttonHide();
  pageStop();
} elseif (....) {
  text('finish02');
  buttonHide();
  pageStop();
} else {
  // Continue normally
}

The only limitation is that the variable FINISHED will be 0 in the false-end-pages. That is, however, no real issue for data analysis.

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...