MisterrMac
Technical User
I have written a report that sorts records of two tables in order to get a trend report for clients that submit tickets that "need more info" and "need more time" to complete. Each of these are reflected by a Detail-Type in the Ticket-Detail Table.
The report drills down like this:
NEEDMOREINFO
NAME
TICKET1
TICKET2
NAME
TICKET1
NEEDMORETIME
NAME
TICKET1
TICKET2
Etc…
The only problem is that it takes about 10 minutes to run the report and generate the data!
The two data tables I have linked by the only common field: Ticket#.
The following are the tables and the main data that I am using:
Table 1:Ticket Table 2: Ticket-Detail
*Ticket# *Ticket#
*Client-Name *Detail-Type
I have two groups set up in this order:
Ticket-Detail.Detail-Type
Then Ticket.Client-Name
Finally, to get only those Detail types I want I am doing a record sort using:
{Ticket-Detail.Detail-Type} in [“NEEDMOREINFO”, “NEEDMORETIME”]
Is there some way that I can get this to run faster? There are about 2000 Ticket records with an average of 6 Ticket-Detail records that link to each.
Thanks in advance!
The report drills down like this:
NEEDMOREINFO
NAME
TICKET1
TICKET2
NAME
TICKET1
NEEDMORETIME
NAME
TICKET1
TICKET2
Etc…
The only problem is that it takes about 10 minutes to run the report and generate the data!
The two data tables I have linked by the only common field: Ticket#.
The following are the tables and the main data that I am using:
Table 1:Ticket Table 2: Ticket-Detail
*Ticket# *Ticket#
*Client-Name *Detail-Type
I have two groups set up in this order:
Ticket-Detail.Detail-Type
Then Ticket.Client-Name
Finally, to get only those Detail types I want I am doing a record sort using:
{Ticket-Detail.Detail-Type} in [“NEEDMOREINFO”, “NEEDMORETIME”]
Is there some way that I can get this to run faster? There are about 2000 Ticket records with an average of 6 Ticket-Detail records that link to each.
Thanks in advance!