Hey folks,
What I have is a query that results in some general employee information including:
EmpID
EmployeeName
TotalHrsLogged
What im trying to do is report the EmpID, EmployeeName where its the MIN or MAX(TotalHrsLogged). I tried this:
HighestOcc: Max([TotalHrsLogged]) & " - " & [EmpID] & " " & [EmployeeName]
LowestOcc: Min([TotalHrsLogged]) & " - " & [EmpID] & " " & [EmployeeName]
These expressions do not cause an error however they do not display the correct results. I could not find a way to make it run at all without doing it as a concatenated field. Any help would be great. I do not have to have a concatenated field it can be 3 individual fields or whatever. I just need that data. Thanx in adv.
What I have is a query that results in some general employee information including:
EmpID
EmployeeName
TotalHrsLogged
What im trying to do is report the EmpID, EmployeeName where its the MIN or MAX(TotalHrsLogged). I tried this:
HighestOcc: Max([TotalHrsLogged]) & " - " & [EmpID] & " " & [EmployeeName]
LowestOcc: Min([TotalHrsLogged]) & " - " & [EmpID] & " " & [EmployeeName]
These expressions do not cause an error however they do not display the correct results. I could not find a way to make it run at all without doing it as a concatenated field. Any help would be great. I do not have to have a concatenated field it can be 3 individual fields or whatever. I just need that data. Thanx in adv.