Maybe this will solve your problem, build a query with the following SQL, substitute 'a' with your table name, 'Agent_no' with your employee id field and 'Appt_date' with your birthday field.
SELECT a.Agent_no, a.Appt_Date, Day([appt_date]) AS BDay, Month([appt_date]) AS BMonth FROM a WHERE...