My employees are due evaluaions 60 days from the hire date. My query below shows me this:
HireDate Overdue
01/25/2010 61 days over due
But I need to show it like this:
HireDate Overdue
01/25/2010 1 days over due
What do I need to do to make this work?
[blue]Overdue: IIf([HireDate]+60<Date(),Int(Date()-[HireDate]) & ' days over due','')[/blue]
HireDate Overdue
01/25/2010 61 days over due
But I need to show it like this:
HireDate Overdue
01/25/2010 1 days over due
What do I need to do to make this work?
[blue]Overdue: IIf([HireDate]+60<Date(),Int(Date()-[HireDate]) & ' days over due','')[/blue]