
Originally Posted by
InsuranceGuy
I've had to do this before in Access. What I ended up doing was creating two queries and a table to assist in getting my result.
The first query was a create table query which took the first Crosstab and generated the Total Recs row only (and in doing so the data structure for the table).
The second query was an append query which took the second Crosstab which generated the Unique Recs row only and appended it to the table just created.
Then my report used this output table which I constantly recreated.
the button to run the report would run the make table query, then the append query, before opening the report.
Good luck,
Jeff