Version: Crystal XI
Datastore: Access 2003
Scenario: I have two separate tables; one that contains data about employee authorizations (AUTHORIZATIONS) and the other that contains data about employees enrolled (ENROLLED) in courses. These tables don’t share a unique identifier.
From the AUTHORIZATIONS table I need to capture the “department”, “job specialty”, and a count of “position number” (primary key). This will produce the number of positions for a “job specialty” within each “department”.
From the ENROLLED table I need the “department”, “job specialty”, and count of “enrolled number” (primary key). This will produce the number of enrolled for a “job specialty” within each “department”.
I’ve been able to do this without any problem. The problem comes when I want to show the data side-by-side. For example:
Department
Job Specialty (Count of Pos#) (Count of Enrollment#)
I’ve been able to be successful in displaying the values in which the “job specialty” exists in the “department” in both tables, but when the “job specialty” only exists in one of the tables, I don’t get a result.
For example: The AUTHORIZATIONS table contains records for “job specialty” (xyz), but there aren’t any records in the ENROLLED table for “job specialty” (xyz). And vice versa.
How do I get the report to show all instances of “job specialty” from both tables and then provide the value? In some cases the returned value will be zero if one of the tables didn’t contain any records for the ‘job specialty”.
Datastore: Access 2003
Scenario: I have two separate tables; one that contains data about employee authorizations (AUTHORIZATIONS) and the other that contains data about employees enrolled (ENROLLED) in courses. These tables don’t share a unique identifier.
From the AUTHORIZATIONS table I need to capture the “department”, “job specialty”, and a count of “position number” (primary key). This will produce the number of positions for a “job specialty” within each “department”.
From the ENROLLED table I need the “department”, “job specialty”, and count of “enrolled number” (primary key). This will produce the number of enrolled for a “job specialty” within each “department”.
I’ve been able to do this without any problem. The problem comes when I want to show the data side-by-side. For example:
Department
Job Specialty (Count of Pos#) (Count of Enrollment#)
I’ve been able to be successful in displaying the values in which the “job specialty” exists in the “department” in both tables, but when the “job specialty” only exists in one of the tables, I don’t get a result.
For example: The AUTHORIZATIONS table contains records for “job specialty” (xyz), but there aren’t any records in the ENROLLED table for “job specialty” (xyz). And vice versa.
How do I get the report to show all instances of “job specialty” from both tables and then provide the value? In some cases the returned value will be zero if one of the tables didn’t contain any records for the ‘job specialty”.