Hi @Neel88,
You can use below sample. You need to set different dependency token in each panel.
<dashboard>
<label>test_hide</label>
<row>
<panel depends="$panel1$">
<title>Panel 1</title>
<event>
<search>
<query>index=_internal </query>
<earliest>-5m@m</earliest>
<latest>now</latest>
<progress>
<condition match="$job.resultCount$ == 0">
<unset token="panel1"></unset>
</condition>
<condition>
<set token="panel1">true</set>
</condition>
</progress>
</search>
<option name="list.drilldown">none</option>
</event>
</panel>
<panel depends="$panel2$">
<title>Panel 2</title>
<event>
<search>
<query>index=_internal nothing to found </query>
<earliest>-5m@m</earliest>
<latest>now</latest>
<progress>
<condition match="$job.resultCount$ == 0">
<unset token="panel2"></unset>
</condition>
<condition>
<set token="panel2">true</set>
</condition>
</progress>
</search>
<option name="list.drilldown">none</option>
</event>
</panel>
</row>
</dashboard>
Its working perfectly. Thank you so much for your help.