Searching a report on a field without displaying the field

I have a report which is set as “Requires Search”. Only one field has the search option selected so, as expected, I get a box to fill in the value for that field and then the report is correctly displayed.
BUT I don’t want that field (which I used for the search) displayed in the resulting report - but if I untick ‘show’ in the field settings, then the initial search box doesn’t show either.Is there a way to get the initial search box for that field but then disable or hide the field from showing in the results?
Thanks

You may use Startup Script to hide it based on your own condition.

When I look at the source of the summary report page, the field I want to hide does not appear to have a class associated with it.
Here is one row from the source…

<tr data-group="LBR/LBP" data-group-2="A">
<td data-field="name" class="ew-rpt-grp-field-1"><span>LBR/LBP</span></td>
<td data-field="league_team" class="ew-rpt-grp-field-2"><span>A</span></td>
<td data-field="lround"> <span>3</span></td>
<td data-field="fullname"><span>Adrian</span></td>
<td data-field="totalscore"><span>147</span></td>
</tr>

The field in question is this - 3Not sure how to hide it with no class??

You may select elements by their attributes, see Attribute selectors.

Thanks - that worked.In case it is of use to others, I had to hide both the header row and the data rows using:

$("[data-field='lround']").hide();
$("[data-name='lround']").hide();