Hi! I’m trying to redirect to an anonymous survey where I keep three embedded variables the same across three surveys: Day, Counterbalance group, and participant ID. In my survey, people insert ID as the first question. So my redirect link will look something like
qualtrics.com/form/SURVEYCODE?ID=[PARTICIPANTID]&DAY=[DAY]&CBGROUP=[COUNTERBALANCINGGROUP]. I’m able to get day and counterbalancing group to embed in the link properly, but I can’t for participant ID. It just enters nothing in the URL
Things I have tried:
- qualtrics.com/form/SURVEYCODE?ID=${q://ID/ChoiceGroup/SelectedChoices}
- qualtrics.com/form/SURVEYCODE?ID=${q://ID}
- Embedding ID as value set by panel and making redirect qualtrics.com/form/SURVEYCODE?ID=${e://Field/ID?format=urlencode}
- Embedding ID as ${q://ID/ChoiceGroup/SelectedChoices} making redirect qualtrics.com/form/SURVEYCODE?ID=${e://Field/ID?format=urlencode}
- Embedding ID as ${q://ID} making redirect qualtrics.com/form/SURVEYCODE?ID=${e://Field/ID?format=urlencode}
All end up the same way: qualtrics.com/form/SURVEYCODE?ID=&DAY=[DAY]&CBGROUP=[COUNTERBALANCINGGROUP]
How can I get my redirect link to include participant ID?
