I would like to have a formula field like the following
If Count(Employees.Trainings, Employees.EmployeeID)>=1 Then
Employees.EmployeeID
Else
Null
My goal is to do a count on this formula so that I know how many Employees have completed at least one training. Apparenlty this is not possible in Crystal Reports. Is there a workaround? I would like my report to look something like this:
Department Employees Sum(days) Employees who have at least one training
Department A 25 120 20
Department B 12 34 10
I miss the last column. My report is grouped by the Department and Employee ID. Thank you!