I have a problem with a cross-tab report that seems similar to that found in thread149-1029079, but it is not quite the same.
I have a table that holds history records for service requests, so a set of these records for each particular request would show all of the activity during the life cycle of that request.
The critical fields for the cross-tab are the RqstNum (rows), Status (columns), and Avg of StatusAge (summarized field). The StatusAge is a calculated field that holds the amount of time that a service request spent (in days) in each particular status.
Example of the data:
RqstNum Status Age
123 Triage 2
123 Assigned .001
123 Addl Info 1
123 Coding 5
124 Entered .1
124 Triage 3
124 Assigned 5
124 Coding 7
When this data is thrown into a cross-tab, I want it to look like this:
Entered Triage Assigned AddlInfo Coding
123 <null> 2 0.0 1 5
124 .1 3 5 <null> 7
Avg of Age .1 2.5 2.5 1 6
I round off the values in the cross-tab to .1, so the .001 value becomes 0.0
My problem is with the cases where there should be null values the report displays 0.0, I would like those to be blank. Request 123 never entered into an 'Entered' status and 124 never entered into an 'AddlInfo' status, but the way it displays on my report, you can't distinguish them from 0.0 value for 123 under the Assigned status.
I have tried suppressing the display of the value when it is null or zero, no luck. The formatting options don't seem to be able to discern individual values within the grid.
I am using Crystal XI R2 on Windows XP Pro SP2.
Any help would be appreciated.
I have a table that holds history records for service requests, so a set of these records for each particular request would show all of the activity during the life cycle of that request.
The critical fields for the cross-tab are the RqstNum (rows), Status (columns), and Avg of StatusAge (summarized field). The StatusAge is a calculated field that holds the amount of time that a service request spent (in days) in each particular status.
Example of the data:
RqstNum Status Age
123 Triage 2
123 Assigned .001
123 Addl Info 1
123 Coding 5
124 Entered .1
124 Triage 3
124 Assigned 5
124 Coding 7
When this data is thrown into a cross-tab, I want it to look like this:
Entered Triage Assigned AddlInfo Coding
123 <null> 2 0.0 1 5
124 .1 3 5 <null> 7
Avg of Age .1 2.5 2.5 1 6
I round off the values in the cross-tab to .1, so the .001 value becomes 0.0
My problem is with the cases where there should be null values the report displays 0.0, I would like those to be blank. Request 123 never entered into an 'Entered' status and 124 never entered into an 'AddlInfo' status, but the way it displays on my report, you can't distinguish them from 0.0 value for 123 under the Assigned status.
I have tried suppressing the display of the value when it is null or zero, no luck. The formatting options don't seem to be able to discern individual values within the grid.
I am using Crystal XI R2 on Windows XP Pro SP2.
Any help would be appreciated.