How can we set answers for select cells in a side-by-side matrix ? | XM Community
Solved

How can we set answers for select cells in a side-by-side matrix ?

  • 17 December 2018
  • 1 reply
  • 19 views

I want to auto-fill responses to some cells in a side-by-side matrix based on previous responses - I understand we can capture the data with piped/ embedded text option, but how can we assign the values to the cells ( I have drop down option for the side-by-side matrix)
icon

Best answer by TomG 17 December 2018, 14:49

View original

1 reply

Userlevel 7
Badge +27
@KumarA_156,

Let's says the select you want change the value of is the jQuery object stored in the variable 'select' and you want to change the selected value to choiceid 1, then:
```
select.val("1").change();
```

Leave a Reply