#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Date format

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Date format

To calculate the age with data as such ...try

=DATEDIF(DATE(RIGHT(TEXT(A1,"00000000"),4),
LEFT(TEXT(A1,"00000000"),2),MID(TEXT(A1,"00000000" ),3,2)),
TODAY(),"y") & " years"

--
Jacob (MVP - Excel)


"Katerinia" wrote:

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Date format

Forgot to mention...If you want to convert that to a valid date apply the
below formula to a column near by and format to date....

=--TEXT(A1,"00\/00\/0000")

--
Jacob (MVP - Excel)


"Katerinia" wrote:

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 132
Default Date format

Assume that you are having the one of the data in A1 cell.

If your system date format is MM/DD/YYYY then copy and paste the below
formula in B1 cell

=IF(A1="","",IF(LEN(TRIM(A1))=7,VALUE(LEFT(TRIM(A1 ),1)&"/"&MID(TRIM(A1),2,2)&"/"&RIGHT(TRIM(A1),4)),IF(LEN(TRIM(A1))=8,VALUE(LEFT (TRIM(A1),2)&"/"&MID(TRIM(A1),3,2)&"/"&RIGHT(TRIM(A1),4)))))

If your system date format is DD/MM/YYYY then copy and paste the below
formula in B1 cell

=IF(A1="","",IF(LEN(TRIM(A1))=7,VALUE(MID(TRIM(A1) ,2,2)&"/"&LEFT(TRIM(A1),1)&"/"&RIGHT(TRIM(A1),4)),IF(LEN(TRIM(A1))=8,VALUE(MID( TRIM(A1),3,2)&"/"&LEFT(TRIM(A1),2)&"/"&RIGHT(TRIM(A1),4)))))

--
Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"Katerinia" wrote:

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22
Default Date format

Thanks so so so so much Jacob! Both worked wonderfully!
--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.


"Jacob Skaria" wrote:

To calculate the age with data as such ...try

=DATEDIF(DATE(RIGHT(TEXT(A1,"00000000"),4),
LEFT(TEXT(A1,"00000000"),2),MID(TEXT(A1,"00000000" ),3,2)),
TODAY(),"y") & " years"

--
Jacob (MVP - Excel)


"Katerinia" wrote:

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy and
boring.. sometimes it is a little challenging and great.. then there are days
it will drive you absolutely INSANE.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Date format

.... but only if your Windows Regional Options (in Control Panel, not in
Excel) are set to mddyyyy, rather than dmmyyyy.
--
David Biddulph


"Jacob Skaria" wrote in message
...
Forgot to mention...If you want to convert that to a valid date apply the
below formula to a column near by and format to date....

=--TEXT(A1,"00\/00\/0000")

--
Jacob (MVP - Excel)


"Katerinia" wrote:

Text in Column E is a date mddyyyy
I need to calculate the age but the text format of this date is throwing
off
the number. Any suggestions

8241938
4121939
8071965
2251950
2101940
12201964
1241980
5311961
3281982
3021967
9171961
10211977

--
Excel isnt just a program its a metaphor for life. Sometimes it is easy
and
boring.. sometimes it is a little challenging and great.. then there are
days
it will drive you absolutely INSANE.



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
permanent conversion of 1904 date format to 1900 date format Jos Excel Worksheet Functions 4 November 26th 15 02:48 PM
How do I convert dd/mm/yy date format to yyddd Julian date format itzy bitzy[_2_] Excel Worksheet Functions 8 December 11th 09 03:20 AM
change date format dd/mm/yyyy to Julian date format? itzy bitzy Excel Worksheet Functions 1 December 8th 09 07:42 PM
Convert date + time text format to date format Paul Ho Excel Worksheet Functions 2 May 22nd 07 05:47 PM
Excel 2000 date format cannot be set to Australian date format Brian Jones Excel Discussion (Misc queries) 1 March 30th 05 06:03 AM


All times are GMT +1. The time now is 09:27 PM.

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

About Us

"It's about Microsoft Excel"