0 votes
in SoSci Survey (English) by s090165 (145 points)

Hi,
Could you advise whether it is possible to do the following:
- Participant responds to question A and her answers are recorded
- Participant is confronted with some other questions/stimuli
- Participant is presented with answers to question A and is able to change them. The changes are recorded A'.

Basically, I am trying to measure a change in opinion after confronting participants with certain stimuli.

I will be grateful if you could advise whether it is possible to achieve.

Thank you.
A.

1 Answer

0 votes
by SoSci Survey (305k points)

No problem ... you need value() to read the first answer, and preset() to set the first answer for the second question.

If page 1 asks the text input item AB01_01, for example, and the answer should be presented on page 3 (question CD01), then put this PHP code on page 3 above the question CD01:

$answer = value('AB01_01');
put('CD01_01', $answer);

You can also use this on selections etc. However, you will need at least one line per variable, or - if yu have more than 3 variables - you should do it with getItems(), id() and a FOREACH loop.

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

...