Hello All,
Thanks for the wonderful responses and i am beginning to learn Access now
Here, I need to pull all the members who have more than 110 years of age as of today's date using Access 97
Here is my Query:
SELECT elgdep.MEM_SOC_SEC_NUM, elgdep.MEM_DEP_CODE, elgdep.MEM_BIRTH_DATE, elgdep.MEM_EFFEC_DATE
FROM elgdep
WHERE (((elgdep.MEM_BIRTH_DATE)>(Format([Today's Date]/365.25,"yyyymmdd")>110)));
I am getting an error "This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables. (Error 3071)" Please help
Thanks for the wonderful responses and i am beginning to learn Access now
Here, I need to pull all the members who have more than 110 years of age as of today's date using Access 97
Here is my Query:
SELECT elgdep.MEM_SOC_SEC_NUM, elgdep.MEM_DEP_CODE, elgdep.MEM_BIRTH_DATE, elgdep.MEM_EFFEC_DATE
FROM elgdep
WHERE (((elgdep.MEM_BIRTH_DATE)>(Format([Today's Date]/365.25,"yyyymmdd")>110)));
I am getting an error "This expression is typed incorrectly, or it is too complex to be evaluated. For example, a numeric expression may contain too many complicated elements. Try simplifying the expression by assigning parts of the expression to variables. (Error 3071)" Please help