CR XI
Oracle db
For this question I have four non-numeric fields
{Incident_Number} - unique ID for each incident
{Level} - level of incident is F or M
{Employee1} Employee ID number
{Employee2} Employee ID number
I am creating a report that will tell you how many F and M incidents were handled by an employee. This is very easy to do if I only want it to report on one employee field.
The problem I have is that some incidents are handled by one employee and some are handled by two employees. So an employee number could show up in either field. I need to group by employee and have sums for M and F next to their respective Employee ID number. The group sums need to pull from employee ID numbers in either field. An incident handled by one employee would have a null field in {employee2}.
To accomplish this to date I have a report with {employee1}plus the other fields in Section DetailA and {employee2} plus the other fields in DetailB. This is exported to Excel. Then I run a second report from the Excel worksheet which will group by employee and it works fine.
What I am trying to do is create the group summaries by employee in one report and not use the two reports and Excel steps. Combining the results for each employee, then grouping them is where I am stumped.
Any suggestions are appreciated.
Oracle db
For this question I have four non-numeric fields
{Incident_Number} - unique ID for each incident
{Level} - level of incident is F or M
{Employee1} Employee ID number
{Employee2} Employee ID number
I am creating a report that will tell you how many F and M incidents were handled by an employee. This is very easy to do if I only want it to report on one employee field.
The problem I have is that some incidents are handled by one employee and some are handled by two employees. So an employee number could show up in either field. I need to group by employee and have sums for M and F next to their respective Employee ID number. The group sums need to pull from employee ID numbers in either field. An incident handled by one employee would have a null field in {employee2}.
To accomplish this to date I have a report with {employee1}plus the other fields in Section DetailA and {employee2} plus the other fields in DetailB. This is exported to Excel. Then I run a second report from the Excel worksheet which will group by employee and it works fine.
What I am trying to do is create the group summaries by employee in one report and not use the two reports and Excel steps. Combining the results for each employee, then grouping them is where I am stumped.
Any suggestions are appreciated.