Hi Andrew,
It seems it's something you can't do out of the box, but I was able to populate a multiselect dropdown with tokens. But it's not possible to automatically populate the multiselect box with those value.
Although I found a javascript that allows you to automatically select the first value of your multiselect, maybe with a bit of coding you'll be able to arrange the code to automatically set all the available value to be selected.
Regards
M.
https://gist.github.com/hobbes3/7c52b67c1de5ba4d9dfe
<form>
<label>test</label>
<fieldset submitButton="false">
<input type="dropdown" token="value1">
<label>field1</label>
<choice value="Test">Test</choice>
<choice value="Test1">Test1</choice>
</input>
<input type="dropdown" token="value2">
<label>field2</label>
<choice value="Test2">Test2</choice>
<choice value="Test3">Test3</choice>
</input>
<input type="multiselect" token="field1" searchWhenChanged="true">
<search>
<query>| makeresults | eval Title="$value1$,$value2$" | makemv delim="," Title | mvexpand Title | appendcols [| makeresults | eval Value = "$value1$,$value2$" | makemv delim="," Value | mvexpand Value] | fields Title,Value</query>
</search>
<fieldForLabel>Title</fieldForLabel>
<fieldForValue>Value</fieldForValue>
</input>
</fieldset>
<row>
<panel>
<html>
$value1$
</html>
</panel>
</row>
<row>
<panel>
<html>
$value2$
</html>
</panel>
</row>
</form>
... View more