Solved
Add and view embedded data
I am trying to add an embedded data to my survey. Whenever the user answers a certain question, this new embedded data field gets populated. I am coding it liked this: Qualtrics.SurveyEngine.addOnload(function()
{....
this.addEmbeddedData("Profile", "High");
}
so a new data field "Profile" is created with the string "High" (for a particular questions). When I export the data to view it on SPSS, I am unable to view this new data field anywhere. Am I adding and viewing this new field incorrectly?
Best answer by Anonymous
Hello @R_I ,
I agree with @jpardicusick suggestion but still if you want to set the embedded data using JS then use below code:
Qualtrics.SurveyEngine.setEmbeddedData("Profile", "High");
Note: Make sure you have an embedded data -"Profile" declared in the survey flow before the question where you are using the above JS.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
