Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default i need a formula that calculates current age on a daily basis?

basically I'm setting a spreadsheet for a waiting list for children to join a
group, and I'm doing it on age order and I need a formula to show me what age
the children are at a given time....
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default i need a formula that calculates current age on a daily basis?

Marge,

The simplest gives the age in years

=DATEDIF(A1,TODAY(),"Y")

To get a more detailed age

=DATEDIF(A1,today(),"Y")&" Years "&DATEDIF(A1,Today(),"YM")&" Months
"&DATEDIF(A1,today(),"MD")&" Days"

The last formula while mostly reliable can throw anomolies, try this dates

31 Jan 1951
01 Mar 2008
which gives
57 years, 1 months, -1 days

For that reason you may want this

=DATEDIF(A1,today(),"Y")&" Years "&DATEDIF(A1,today(),"YD")&" Days"

Datedif isn't documented in Excel, for help look here

http://www.cpearson.com/excel/datedif.aspx

Mike


"Marge" wrote:

basically I'm setting a spreadsheet for a waiting list for children to join a
group, and I'm doing it on age order and I need a formula to show me what age
the children are at a given time....

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 268
Default i need a formula that calculates current age on a daily basis?

"Marge" wrote in message
...
basically I'm setting a spreadsheet for a waiting list for children to
join a
group, and I'm doing it on age order and I need a formula to show me what
age
the children are at a given time....


=(TODAY()-A1)/365
where the birthday is in A1

It doesn't take account of the fact that a year is actually completed the
day preceding a birthday or that some years have 366 days but it will do the
job.

Bill Ridgeway


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I automatically reset numbers to 0 on a daily basis? [email protected].(donotspam) Excel Discussion (Misc queries) 3 December 10th 08 05:17 PM
how do i record my home expenses on daily basis sheerbikhzir Excel Discussion (Misc queries) 2 September 8th 07 04:12 PM
formula only calculates when clicked kbenedict Excel Worksheet Functions 1 April 24th 07 07:04 PM
Make date change in excel to current date when opening daily? jamie Excel Discussion (Misc queries) 3 March 1st 06 03:37 PM
formula that calculates upon saving only hw Excel Discussion (Misc queries) 2 May 26th 05 03:47 PM


All times are GMT +1. The time now is 01:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"