Age calculator and Total number of year counting

G

Guest

Hi,

I would like to have one Excel sheet in my Resume -- which will calculate my
age as of today and it will count total expersinace in the format of year
month.

Example:
[1] If enter DOB -- 15/6/1980(DD/MM/YYYY) -- answer will be 27 year 6 month

[2] Resume

company 1 -- worked from SEP 05 to OCT 06
company 2 -- worked from NOV 06 to Dec 07

total expr is 2 year 6 month

can somebody help on this?
 
G

Guest

Hi,

Try this

=DATEDIF(A1,TODAY(),"y") & " Years, " & DATEDIF(A1,TODAY(),"ym") & " Months "

Calculates the difference between A1 and today.

Mike
 
G

Guest

Hi Mike,

Age calculator is working fine, Now I like to calculate total years of
experience based on two dates
--
---------------------
Arvind


Mike H said:
Hi,

Try this

=DATEDIF(A1,TODAY(),"y") & " Years, " & DATEDIF(A1,TODAY(),"ym") & " Months "

Calculates the difference between A1 and today.

Mike

Arvind Saxena said:
Hi,

I would like to have one Excel sheet in my Resume -- which will calculate my
age as of today and it will count total expersinace in the format of year
month.

Example:
[1] If enter DOB -- 15/6/1980(DD/MM/YYYY) -- answer will be 27 year 6 month

[2] Resume

company 1 -- worked from SEP 05 to OCT 06
company 2 -- worked from NOV 06 to Dec 07

total expr is 2 year 6 month

can somebody help on this?
 
G

Guest

Hi,

You use the same formula

=DATEDIF(A1,A2,"y") & " Years, " & DATEDIF(A1,A2,"ym") & "

but replace A1 - A2 with the start and end dates of that employment. A1 must
be the earlier date.

Mike

Arvind Saxena said:
Hi Mike,

Age calculator is working fine, Now I like to calculate total years of
experience based on two dates
--
---------------------
Arvind


Mike H said:
Hi,

Try this

=DATEDIF(A1,TODAY(),"y") & " Years, " & DATEDIF(A1,TODAY(),"ym") & " Months "

Calculates the difference between A1 and today.

Mike

Arvind Saxena said:
Hi,

I would like to have one Excel sheet in my Resume -- which will calculate my
age as of today and it will count total expersinace in the format of year
month.

Example:
[1] If enter DOB -- 15/6/1980(DD/MM/YYYY) -- answer will be 27 year 6 month

[2] Resume

company 1 -- worked from SEP 05 to OCT 06
company 2 -- worked from NOV 06 to Dec 07

total expr is 2 year 6 month

can somebody help on this?
 
G

Guest

Hey Mike,

How DO I do total of all --

Example:

company 1 --sep-00 to sep02 -- 2 year
Company 2 --Oct-02 to Oct 04 -- 2 year

Total exper is 4 year
--
---------------------
Arvind


Mike H said:
Hi,

You use the same formula

=DATEDIF(A1,A2,"y") & " Years, " & DATEDIF(A1,A2,"ym") & "

but replace A1 - A2 with the start and end dates of that employment. A1 must
be the earlier date.

Mike

Arvind Saxena said:
Hi Mike,

Age calculator is working fine, Now I like to calculate total years of
experience based on two dates
--
---------------------
Arvind


Mike H said:
Hi,

Try this

=DATEDIF(A1,TODAY(),"y") & " Years, " & DATEDIF(A1,TODAY(),"ym") & " Months "

Calculates the difference between A1 and today.

Mike

:

Hi,

I would like to have one Excel sheet in my Resume -- which will calculate my
age as of today and it will count total expersinace in the format of year
month.

Example:
[1] If enter DOB -- 15/6/1980(DD/MM/YYYY) -- answer will be 27 year 6 month

[2] Resume

company 1 -- worked from SEP 05 to OCT 06
company 2 -- worked from NOV 06 to Dec 07

total expr is 2 year 6 month

can somebody help on this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top