I have a query with Age field. I would like to group them based on the age entered.
I have a code that looks like this:
Everything works except when the age is 100 or above. The query will show 'under 65' for those people whose age is 100 or above.Code:AgeGroup: IIf([Age]<"65","Under 65",IIf([Age]>="65" And [Age]<"75","65-74",IIf([Age]>="75" And [Age]<"85","75-84",IIf([Age]>="85","85 and older","N/A"))))
Please help.