Nov 9, 2001 #1 SShefer Technical User Aug 7, 2001 20 US I have a report. I have my data, but when I view the report I can see everything. How can I narrow it down to one criteria. EX. Customers. View report and see them all. I just want to see one. How do I do it? Thanks!
I have a report. I have my data, but when I view the report I can see everything. How can I narrow it down to one criteria. EX. Customers. View report and see them all. I just want to see one. How do I do it? Thanks!
Nov 10, 2001 #2 genomon Programmer Aug 20, 2001 2,449 US Use DAO to create a temporary recordset in VBA. Do a .MoveFirst. Set the control or section recordsource property (in code) to the first record: rstRecordSet.MoveFirst TextBox.Text = rst.FieldName Upvote 0 Downvote
Use DAO to create a temporary recordset in VBA. Do a .MoveFirst. Set the control or section recordsource property (in code) to the first record: rstRecordSet.MoveFirst TextBox.Text = rst.FieldName
Nov 10, 2001 #3 donnadee IS-IT--Management May 30, 2001 216 US Is there a query for the report? You could go into the report properties and use the query to look up the report for just one customer. You would enter the name of the customer in the customer field and run the report. Just remember if you save it, you'll need to change the query back or the report will be incorrect for the next use. Upvote 0 Downvote
Is there a query for the report? You could go into the report properties and use the query to look up the report for just one customer. You would enter the name of the customer in the customer field and run the report. Just remember if you save it, you'll need to change the query back or the report will be incorrect for the next use.