The above response will works for me. We can get our base search job id into "sid" token. Then we can use "| loadjob <sid of search>" splunk command to run our panel without make it base search. <search id="basesearch">
<query>| makeresults count=1 | streamstats count</query>
<done>
<set token="sid">$job.sid$</set>
</done>
</search> <panel>
<title>Dashboard panel without use of basesearch</title>
<table>
<title>Can export</title>
<search> <!-- Remove base="<BaseSearch>" from here -->
<query>| loadjob $sid$ | search "user your query here.." </query>
</search>
<option name="drilldown">none</option>
</table>
</panel>
... View more