Apr 11, 2005 #1 Nicos67 Programmer Apr 28, 2004 52 GB Hi All, How do I convery clients years of age eg (41.3) into client Date of Birt in a query Thanks Nicos
Hi All, How do I convery clients years of age eg (41.3) into client Date of Birt in a query Thanks Nicos
Apr 11, 2005 #2 lupins46 MIS Feb 19, 2004 2,509 GB well I can't imagine how this calculation can be accurate. After all, WHEN was the person 41.3 years old? You can get a date using: Dim Age as double, DOB as date Age = 41.3 DOB = dateadd("yyyy",-1*(int(age),Date())-(365*(age-Int(age))) Upvote 0 Downvote
well I can't imagine how this calculation can be accurate. After all, WHEN was the person 41.3 years old? You can get a date using: Dim Age as double, DOB as date Age = 41.3 DOB = dateadd("yyyy",-1*(int(age),Date())-(365*(age-Int(age)))