Hi folks,
We have an international study that can be filled in in multiple languages. Instead of sending the answer choices of the select questions in English, the integration sends answers in whatever language the survey was filled in. This creates an issue on the SF end as it doesn't recognize the value.
Besides recoding all the variables is there a way to make sure that answers are sent in English?
Thanks in advance!
Solved
Piping non-English select choices to Salesforce
Best answer by TomG
https://community.qualtrics.com/XMcommunity/discussion/comment/47008#Comment_47008This should do it:
Qualtrics.SurveyEngine.addOnReady(function() {
if(jQuery("#Q_lang").val()=="EN") this.clickNextButton();
else jQuery("#Q_lang").val("EN").trigger("change");
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

Hi Tom,