Only Print One Page?

  • Thread starter Thread starter Neil Ginsberg
  • Start date Start date
N

Neil Ginsberg

Is there a way to only print the first page for a report? Also, if the
report is grouped by person (with each person's data starting on a new
page), is it possible to only print the first page for each person?

Thanks!

Neil
 
Is there a way to only print the first page for a report? Also, if the
report is grouped by person (with each person's data starting on a new
page), is it possible to only print the first page for each person?

docmd.printout ...
search in helpfiles to find more detailed information.
 
The report needs to display the first page for each person in Preview mode,
not just when printed (in fact, I won't be printing it from the routine).
But since the number of pages for each person isn't known, one wouldn't be
able to use PrintOut to print the first page for each anyway, even if one
were sending it to the printer, right?

Neil
 
The report needs to display the first page for each person in Preview mode,
not just when printed (in fact, I won't be printing it from the routine).
But since the number of pages for each person isn't known, one wouldn't be
able to use PrintOut to print the first page for each anyway, even if one
were sending it to the printer, right?

I'm sorry, I didn't read your question good enough. I thought there
would be one report for one person. Not that a report would involve
several persons. I don't think it's possible what you're asking.
Maybe there's a solution in the query behind the report. You can group
on the fields and then select instead of 'group by' for the
appropiated field (ID_Person maybe) 'First'. So this time only the
first record for ID_person is shown in your recordset off the report.
Don't know for sure off in your case this will work the way you want
it to be, but give it a shot.
 
Back
Top