I need to make a indivivual report of every client with his information stored my database (Access).
Can I do it with a query, form , command button? how?
thank you
The easiest way to do this is to create seperate queries for each customer with the fields you want on your report then use the create report wizard and select the query from the dropdown box and follow the instructions.
Basically create the report based on the query.
This will show the info that you require on each report.
It is not reasonable to create a query for each customer. What if you have thousands of customers?
Create a form with a combobox that displays customers. In the AfterUpdate event of the combo, use the OpenForm method to open your report. You can include the where argument to limit the report to just the customer selected by the combo. Look up help for OpenReport Method or search the archives here.