multiple records per page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to make a report. Let's say I have 50 different customers. Each
one can have a combination of up to 10 subscriptions to different services.
How can I make a report that displays the customer's name and each
subscription, which take up 5 lines each? I want more than 1 subscription per
page.
Here is an example:
John Doe

Subscription 1
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx

Subscription 2
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxx
 
Create a query that returns your information and use it as the record source
of your report. Group by customer with a group header for the customer's
name. Place the subscription information in the report's detail section.
 
Back
Top