Yes,
Go into the report design and look at the report design's RecordSource property. This will be either an SQL statement starting something like SELECT this, that, theother FROM blah
Change this to SELECT TOP 10 this, that, theother FROM blah
If it is the name of a stored query, open the query in design mode, change to SQL view and edit the code as above.
John