Hi
I just created an embbeded variable during the response of question A with the following code
Qualtrics.SurveyEngine.addOnPageSubmit(function() {
var x = "${q://QID1007/ChoiceGroup/SelectedAnswers/26}";
var ans="During the time we just identified, " + x + "]";
Qualtrics.SurveyEngine.setEmbeddedData("Timing", ans);
});
And I piped in the embbeded variable in the next question B
${e://Field/Timing}, did you do other stuffs?
So, what I got is only “During the time we just identified “ without the response in question A, but if go back using the button to question A and return with the next button to question B, it appears!
So, why is this happening and how I can show inmediatly my embbeded variable in question B when people responded question A?
Thank you!