You need to edit the report and modify the query.
If it is a SQL report you need to use a TOP clause, something like
SELECT TOP 5 * FROM FilteredAccount
if your report is FetchXml, you need to use the count property, for example:
<fetch count="5" mapping="logical">
<entity name="Account">
<all-attributes />
</entity>
</fetch>
My blog: www.crmanswers.net -
Rockstar 365 Profile