I'm using Crystal XI with SQL MDB and no ability to create views or stored procedures. I've not had much experience with Crystal Reports and/or crosstabs.
I've had a look at other posts regarding similar issues but so far none of the techniques have worked as they do not seem to address multiple fields in the row portion. Is this possible?
I have a report which consists of a crosstab in the report header only. All other areas have been suppressed. The crosstab's colum is {table.user} and the rows are grouped first by {table.drug} and then by {table.event}. The summary is the count of events by drug for each user.
The number of users varies depending on the unit parameter but in the larger units, there can be up to a 100 users. There are also a large number of drugs.
What I want to do is limit each page to 25 users and have the crosstab cycle through all the drugs before printing the next group of 25 users. I do not need row or column grand totals.
I've had a look at other posts regarding similar issues but so far none of the techniques have worked as they do not seem to address multiple fields in the row portion. Is this possible?
I have a report which consists of a crosstab in the report header only. All other areas have been suppressed. The crosstab's colum is {table.user} and the rows are grouped first by {table.drug} and then by {table.event}. The summary is the count of events by drug for each user.
Code:
User 1 User 2 User 3 User 4 etc.
Drug 1 Event 1 1 0 1 5
Event 2 1 2 1 4
Drug 2 Event 1 4 6 7 9
Drug 3 Event 2 1 7 5 6
etc.
The number of users varies depending on the unit parameter but in the larger units, there can be up to a 100 users. There are also a large number of drugs.
What I want to do is limit each page to 25 users and have the crosstab cycle through all the drugs before printing the next group of 25 users. I do not need row or column grand totals.