populate matrix table (Matrix Type: text entry) | XM Community
Solved

populate matrix table (Matrix Type: text entry)

  • 30 January 2021
  • 1 reply
  • 24 views

Userlevel 3
Badge

I have a text entry matrix table with one row and two columns.
I want to populate column one with "CP104" and column two with "A"
${q://QID18/ChoiceTextEntryValue/5/1} would pipe "CP104"
${q://QID18/ChoiceTextEntryValue/5/2} would pipe "A"
So, I use the URL with the following parameters:
Q_PopulateResponse={"QID18":{"5":{"1": "CP104"},"5":{"2": "A"}} }
The above does populate column two with "A", but does **not** populate column one with "CP104"
If it matters, there is a RegEx custom validation for column one in the survey, but "CP104" passes the validation.

https://www.qualtrics.com/support/survey-platform/survey-module/survey-flow/standard-elements/passing-information-through-query-strings/#faq-194

icon

Best answer by rondev 30 January 2021, 13:04

View original

1 reply

Userlevel 7
Badge +22

The Q_PopulateResponse should be as below:
Q_PopulateResponse={"QID18":{"5":{"1": "CP104","2": "A"}}}

Leave a Reply