Solved
How to prioritize question statements off of embedded data?

I need a way for question statements to flex based on the order I enter them into the embedded data.
We have a question that asks to rate presenters. For our events, 10 out of the 30 presenters actually presented that day. Then the next day it might be a different 10 people. to add complexity there could be 2 or more events going on at the same time. I have created embedded data to pull in the name of the presenter that someone will enter before sending out the link. Example. Presenter = BillyJohnSallyJim. Using "contains" logic the questions correlated to these people populate. However they populate in the order in which they were programmed/built. I need the questions to populate based on the order I entered them in the embedded data to align with the order they presented in to make the best customer experience.
I can't break the presenters out into individual question since I need a graph of the presenters overall sore in reporting and mapping 30+ presenters across 10 topics would be very complex. Unless there is a why to easily connect that I am not aware of.
Best answer by TomG
> The issue with Loop and merge is our embedded data shows the list of presenters. There is no question that is populated that lists the presenters. To my understanding you can't do loop and merge unless something is selected. Correct?
Not correct. As @Libertywick mentioned, you can loop off displayed choices.
Anyway, as to your problem...use JS to split your Presenter variable into separate variables and populate new embedded variables (this assumes that each presenter's name begins with a capital letter as you've shown it):
```
var pa = "${e://Field/Presenter}".split(/(?=[A-Z])/);
jQuery.each(pa, function(i) { Qualtrics.SurveyEngine.setEmbeddedData("Presenter"+(i+1), this) });
```
Then pipe your new presenters (e.g, ${e://Field/Presenter1} , etc.) into an MC question and use display logic to display only those that aren't empty. You'll have to set up the MC question for the max possible number of presenters. Hide the question with JavaScript, then loop & merge based on the displayed choices in the MC question. The loop will go through the presenters in order.
Your biggest issue will be decoding the data since loop 1 won't be a specific presenter, just the one listed first for a particular respondent. You could write some code to decode the loop question responses into separate presenter specific embedded variables, but that is fairly complex.
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.