Mar 13, 2006 #1 Dilly Technical User May 28, 2001 41 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 Jul 20, 2001 9,645 GB Int(DateDiff ("d", "[DateOfBirth]", date())/365.25) John Upvote 0 Downvote
Mar 13, 2006 #3 PHV MIS Nov 8, 2002 53,708 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