hi @REACHGPRAVEEN, You can use predefined tokens $click.name2$ to get fieldname and $row.<fieldname>$ to get any field (column) value from the clicked table row. Try this. <form>
<label>MyDashboard01</label>
<row>
<panel>
<title>Table</title>
<table>
<search>
<query>| makeresults
| eval _raw="name,code,success,failures,count
xxxx,1234,50,60,110
yyyy,4312,70,80,150
zzzz,5678,80, 50,130"
| multikv forceheader=1
| table name,code,success,failures,count</query>
<earliest>-1h</earliest>
<latest>now</latest>
</search>
<drilldown>
<set token="code">$row.code$</set>
<set token="result">$click.name2$</set>
</drilldown>
</table>
</panel>
</row>
<row depends="$code$">
<panel>
<title>Token Usage</title>
<table>
<search>
<query>| makeresults
| eval message="filter events on code=$code$ and Res=$result$"
| table message</query>
<earliest>-1h</earliest>
<latest>now</latest>
</search>
</table>
</panel>
</row>
</form> If this reply helps you, a like would be appreciated.
... View more