Lord_Vader
Registered User.
- Local time
- Yesterday, 23:25
- Joined
- Mar 24, 2009
- Messages
- 15
I have a basic table:
Vendor, Error Date, Error Title, Error Notes.
I would like a report that:
Groups on Vendor, Is filtered by date.
The error titles for that vendor would appear on one page. Then the error notes would appear on a subsequent page for readability. (Notes are long memo fields).
The trick is that the error titles must have the note number next to them "(See Note 2)"
Then Note 2 has to show up as note 2 on another page.
I've managed to do it with separate reports
. It's tricky, because being an access database, it doesn't care about record order, so I had to write a query to give order, and then make it match the notes query.
Any ideas? on how to make this simpler? I'm using subqueries with "COUNT" to get the numbered records. I tried a subreport but then access gets angry about aggregate queries within aggregate queries.
Vendor, Error Date, Error Title, Error Notes.
I would like a report that:
Groups on Vendor, Is filtered by date.
The error titles for that vendor would appear on one page. Then the error notes would appear on a subsequent page for readability. (Notes are long memo fields).
The trick is that the error titles must have the note number next to them "(See Note 2)"
Then Note 2 has to show up as note 2 on another page.
I've managed to do it with separate reports
Any ideas? on how to make this simpler? I'm using subqueries with "COUNT" to get the numbered records. I tried a subreport but then access gets angry about aggregate queries within aggregate queries.