You can schedule a dashboard as a PDF which is why I showed how you can determine which fields are used from the search in the dashboard - you could also include a table in the dashboard using the sa...
See more...
You can schedule a dashboard as a PDF which is why I showed how you can determine which fields are used from the search in the dashboard - you could also include a table in the dashboard using the same results <dashboard version="1.1" theme="light">
<label>Test</label>
<row>
<panel>
<chart>
<search>
<query>| makeresults format=csv data="StudentID,Name,GPA,Percentile,Email
101,Student1,4,100%,Student1@email.com
102,Student2,3,90%,Student2@email.com
103,Student3,2,70%,Student3@email.com
104,Student4,1,40%,Student4@email.com"</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
<done>
<set token="sid">$job.sid$</set>
</done>
</search>
<option name="charting.chart">column</option>
<option name="charting.drilldown">none</option>
<option name="charting.data.fieldShowList">[Name,GPA]</option>
</chart>
</panel>
</row>
<row>
<panel>
<table>
<search>
<query>| loadjob $sid$</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
</table>
</panel>
</row>
</dashboard>