Printing selected records

  • Thread starter Thread starter Chris B
  • Start date Start date
C

Chris B

In a report, is there a way with code to print just the
first 5 records within a table?

Chris
 
You can base the report on a query that selects the Top 5 records. However
you must sort the query on some field that defines the record order or you
will get unpredictable results.
 
Back
Top