You can try add this to your panel 1 query: It'll group all the values found in your search into each row, so that even when the results token takes the top row, it'll have all values and make them into a string you can use. The foreach section will surround each value in quotes, just in case there are spaces in your data. ...
| eventstats values(Col1) as Col1_tok values(Col2) as Col2_tok values(Col3) as Col3_tok
| foreach *_tok
[ eval <<FIELD>>=mvjoin(<<FIELD>>, "\",\""), <<FIELD>>="\"".<<FIELD>>."\""] You can use $results.Col1_tok$ etc in place of $results.Col1$ in Rich's answer. Then to keep the panel clean, you can specify the fields it will display using the below line in the XML alongside the <options> data in the panel. : <fields>["ID", "Name", "Col1", "Col2", "Col3"]</fields> Your second panel will need to be adapted for the new format. index=* sourcetype=source Col1="$C1" OR Col2="$C2$" OR Col3="$C3$" becomes index=* sourcetype=source Col1 IN ($C1) OR Col2 IN ($C2$) OR Col3 IN ($C3$)
... View more