I'm new with Crystal and am trying to create a report to show turnover percentages by location- (Turnover % = # of employees terminated during the year / Active employees at the end of the year * 100)
Something like:
The relevant fields in the database are:
E_LOCATION (Location Number
E_SSN (Employee SSN)
E_STATUS (A or T - Active or Terminated)
E_TERMDATE (Date Terminated)
E_HIREDATE (Date Hired)
To get the "TERMINATIONS", I need a [blue]Count[/blue] of E_SSN with E_TERMDATE > 1/1/03 and < 12/31/03.
To get ACTIVE at the end of the year, I need a [blue]Count[/blue] of E_SSN with a hire date < 12/31/03 and E_TERMDATE = null or > 12/31/03.
My questions: How do I get Termination Count and Active Count on the same report? Do I need a sub-report? If so, can I still do the calculation necessary for Turnover %?
Thanks for your help!
Something like:
Code:
[blue]
LOCATION TERMINATIONS ACTIVE TURNOVER %
01 120 235 51 %
02 98 150 65 %
etc...
[/blue]
The relevant fields in the database are:
E_LOCATION (Location Number
E_SSN (Employee SSN)
E_STATUS (A or T - Active or Terminated)
E_TERMDATE (Date Terminated)
E_HIREDATE (Date Hired)
To get the "TERMINATIONS", I need a [blue]Count[/blue] of E_SSN with E_TERMDATE > 1/1/03 and < 12/31/03.
To get ACTIVE at the end of the year, I need a [blue]Count[/blue] of E_SSN with a hire date < 12/31/03 and E_TERMDATE = null or > 12/31/03.
My questions: How do I get Termination Count and Active Count on the same report? Do I need a sub-report? If so, can I still do the calculation necessary for Turnover %?
Thanks for your help!