FIrst I must explain that I am very new to crystal 9.0
I am trying to write a simple report from our trouble ticket system using two tables.
The Priority.table contains 3 values 1,2 and 3 in the priority field.
The Ticket.table contains a call number field, date field and priority field.
I have linked the priority.table to the ticket.table using a Left Outer Join on the priority field of each table.
The report uses the following fields
priority.table priority
ticket.table call number
ticket.table date
ticket.table priority
The report is grouped on priority.table priority
The report then outputs all the trouble ticket numbers grouped by the priority value as I would expect.
If I set a filter restricting the date range using the date field of the ticket.table the report only returns the ticket numbers where the value 1,2 or 3 have been used. If there are no priority 1 tickets, nothing is shown.
I need the report to show the number of tickets against each priority and if there are zero tickets I need it to return the value of 0.
I can't see where I am going wrong with my logic
I am trying to write a simple report from our trouble ticket system using two tables.
The Priority.table contains 3 values 1,2 and 3 in the priority field.
The Ticket.table contains a call number field, date field and priority field.
I have linked the priority.table to the ticket.table using a Left Outer Join on the priority field of each table.
The report uses the following fields
priority.table priority
ticket.table call number
ticket.table date
ticket.table priority
The report is grouped on priority.table priority
The report then outputs all the trouble ticket numbers grouped by the priority value as I would expect.
If I set a filter restricting the date range using the date field of the ticket.table the report only returns the ticket numbers where the value 1,2 or 3 have been used. If there are no priority 1 tickets, nothing is shown.
I need the report to show the number of tickets against each priority and if there are zero tickets I need it to return the value of 0.
I can't see where I am going wrong with my logic