I am reporting on data in an external database I have no control over, using crystal 10.
I have a table with one to many relationship. Main table has job details and linked table has job type and payment type:
e.g.
job no 1 ----- type = a
----- disc = y
job no 2 ----- type = a
----- disc = n
I want to count the types of jobs - which I have achieved with a running total, but then I want a subset which counts how many are "disc" or not - grouped by types
i.e. type a 15 - disc - 5
I have the report grouped by job number and can count all disc and count all types - but how can I get a subset when they are in the same table?
I have a table with one to many relationship. Main table has job details and linked table has job type and payment type:
e.g.
job no 1 ----- type = a
----- disc = y
job no 2 ----- type = a
----- disc = n
I want to count the types of jobs - which I have achieved with a running total, but then I want a subset which counts how many are "disc" or not - grouped by types
i.e. type a 15 - disc - 5
I have the report grouped by job number and can count all disc and count all types - but how can I get a subset when they are in the same table?