Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rameris
 
Posts: n/a
Default Calculation between two dates

I need to find out the amount of time between two dates for filling out
funeral benefits. The form asks how long the person has been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is the formula, if
one, to calculate the time in years months and days that has passed between
the two dates?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student
 
Posts: n/a
Default Calculation between two dates

Yes:


See:

http://www.cpearson.com/excel/datedif.htm
--
Gary''s Student


"Rameris" wrote:

I need to find out the amount of time between two dates for filling out
funeral benefits. The form asks how long the person has been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is the formula, if
one, to calculate the time in years months and days that has passed between
the two dates?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rameris
 
Posts: n/a
Default Calculation between two dates

Well I guess I am the thickest individual in the solar system but doesn't
that tell me either how many years OR months OR days? I need to know how
may of each for example in

"Gary''s Student" wrote:

Yes:


See:

http://www.cpearson.com/excel/datedif.htm
--
Gary''s Student


"Rameris" wrote:

I need to find out the amount of time between two dates for filling out
funeral benefits. The form asks how long the person has been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is the formula, if
one, to calculate the time in years months and days that has passed between
the two dates?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Chip Pearson
 
Posts: n/a
Default Calculation between two dates

The formula on the "Calculating A Person's Age" section of the
web page will return a string stating how many years, months, and
days a person has been alive.

=DATEDIF(A1,B1,"y") & " years, " & DATEDIF(A1,B1,"ym") & "
months, " & DATEDIF(A1,B1,"md") & " days"

where A1 is birthdate and B1 is death date.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"Rameris" wrote in message
...
Well I guess I am the thickest individual in the solar system
but doesn't
that tell me either how many years OR months OR days? I need
to know how
may of each for example in

"Gary''s Student" wrote:

Yes:


See:

http://www.cpearson.com/excel/datedif.htm
--
Gary''s Student


"Rameris" wrote:

I need to find out the amount of time between two dates for
filling out
funeral benefits. The form asks how long the person has
been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say
A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is
the formula, if
one, to calculate the time in years months and days that has
passed between
the two dates?



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rameris
 
Posts: n/a
Default Calculation between two dates

If you could see me I'd be bowing to you in homage..


Thank-you very much


"Chip Pearson" wrote:

The formula on the "Calculating A Person's Age" section of the
web page will return a string stating how many years, months, and
days a person has been alive.

=DATEDIF(A1,B1,"y") & " years, " & DATEDIF(A1,B1,"ym") & "
months, " & DATEDIF(A1,B1,"md") & " days"

where A1 is birthdate and B1 is death date.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"Rameris" wrote in message
...
Well I guess I am the thickest individual in the solar system
but doesn't
that tell me either how many years OR months OR days? I need
to know how
may of each for example in

"Gary''s Student" wrote:

Yes:


See:

http://www.cpearson.com/excel/datedif.htm
--
Gary''s Student


"Rameris" wrote:

I need to find out the amount of time between two dates for
filling out
funeral benefits. The form asks how long the person has
been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say
A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is
the formula, if
one, to calculate the time in years months and days that has
passed between
the two dates?






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rameris
 
Posts: n/a
Default Calculation between two dates

I hope you don't mind answering another question but I used the same basic
formula with two different dates.

The results were correct as I now have

XX Years XX months and XX days for a calculation of a person's age

YY years YY months and YY days for a calculation of a person's time with the
company

When I tried to add those two numbers by simply putting for example
@sum(d4+d5) I got a # VALUE error

The reason I wanted to add those two was a person can retire from our
company when a combination of their age and years of service hit 80 combined
total.

Can you explain what I'm doing wrong in that case?

"Chip Pearson" wrote:

The formula on the "Calculating A Person's Age" section of the
web page will return a string stating how many years, months, and
days a person has been alive.

=DATEDIF(A1,B1,"y") & " years, " & DATEDIF(A1,B1,"ym") & "
months, " & DATEDIF(A1,B1,"md") & " days"

where A1 is birthdate and B1 is death date.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"Rameris" wrote in message
...
Well I guess I am the thickest individual in the solar system
but doesn't
that tell me either how many years OR months OR days? I need
to know how
may of each for example in

"Gary''s Student" wrote:

Yes:


See:

http://www.cpearson.com/excel/datedif.htm
--
Gary''s Student


"Rameris" wrote:

I need to find out the amount of time between two dates for
filling out
funeral benefits. The form asks how long the person has
been alive in Years
Months and Days.

I would like to know if I put for instance 10/21/1955 in say
A1 as the birth
date and 01/25/2006 in B1 as the date of death. So what is
the formula, if
one, to calculate the time in years months and days that has
passed between
the two dates?




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete
 
Posts: n/a
Default Calculation between two dates

You are trying to add two strings of text, so you get the #VALUE error.

Pete

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
Calculating number of days between two dates that fall between two other dates [email protected] Excel Discussion (Misc queries) 5 October 26th 05 06:18 PM
calculation sundays between two dates jeff thinkin Excel Discussion (Misc queries) 3 September 15th 05 02:07 AM
calculation of interest between two dates Arvind Khanna via OfficeKB.com Excel Worksheet Functions 2 May 26th 05 10:19 AM
Calculation to determine days between two dates Dubleaa Excel Worksheet Functions 3 March 17th 05 03:27 AM
Formating Dates for production schedule dpl7579 Excel Discussion (Misc queries) 1 January 11th 05 08:43 PM


All times are GMT +1. The time now is 01:46 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"