0 votes
in SoSci Survey (English) by s208882 (120 points)

The first question is an open question about age:
How old are you? ...
and the participant answer the question in an open way. We want to automatically exclude participants who answer <18 years. How to do it? And then he/she has to be redirected to another page that states like:
Thank you for participating. Unfortunately your profile is not suitable for the current study. We hope you are still interested to participate in other studies in the future. Best regards
Then we want to do it also for two others selection questions regarding psychiatric disorders and language proficiency. If they click on a certain response, they will be redirected to the page above.
Thank you very much!

1 Answer

0 votes
by SoSci Survey (304k points)

How to do it?

Is a simple PHP filter.

if (value('AG01_01') < 18) {
  text('AG02');
  buttonHide();
  pageStop();
}

Also see pageStop().

by s208882 (120 points)
Thank you :) where do I have to put this filter? I'm really new to sosci
by SoSci Survey (304k points)
Get started with the PHP filter manual that I have linked above :)
by s208882 (120 points)
Thank you! :) It was quite easy, it's only a matter of practice

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

...