Mar 13, 2006 #1 Dilly Technical User Joined May 28, 2001 Messages 41 Location GB Hi, I am trying to create a query that will derive the year from todays date and date of birth. i.e Todays Date - Date of Birth = Years (Single no)
Hi, I am trying to create a query that will derive the year from todays date and date of birth. i.e Todays Date - Date of Birth = Years (Single no)
Mar 13, 2006 #2 jrbarnett Programmer Joined Jul 20, 2001 Messages 9,645 Location GB Int(DateDiff ("d", "[DateOfBirth]", date())/365.25) John Upvote 0 Downvote
Mar 13, 2006 #3 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR DateDiff('yyyy',[DateOfBirth],Date()) + (Format([DateOfBirth],'mmdd')>Format(Date(),'mmdd')) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
DateDiff('yyyy',[DateOfBirth],Date()) + (Format([DateOfBirth],'mmdd')>Format(Date(),'mmdd')) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886