Hello guys
I have this query that calculates the age of the employee, works fine for a few seconds and then an error message pops up. please help
I have this query that calculates the age of the employee, works fine for a few seconds and then an error message pops up. please help
Code:
SELECT tblmastr.ID, tblmastr.StatFig, tblmastr.Rtba, tblmastr.FullName, tblmastr.Department, fnAge([DateBirth],Date()) AS Age
FROM tblmastr
WHERE (((fnAge([DateBirth],Date()))>=59));