Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default change text to real dates

Select the range of dates which needs to be corrected. From menu DataText to
Columns will populate the 'Convert Text to Columns Wizard' Hit NextNext will
take you to Step 3 of 3 of the Wizard. From Column Data format select Date
and select the date format in which your data is (DMY).Hit Finish. MSExcel
will now convert the dates to the default date format of your computer.

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default change text to real dates

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

Jacob,

after selecting the dateresults the data produced is the same.
Any ideas? thanks for reply.

"Jacob Skaria" wrote:

Select the range of dates which needs to be corrected. From menu DataText to
Columns will populate the 'Convert Text to Columns Wizard' Hit NextNext will
take you to Step 3 of 3 of the Wizard. From Column Data format select Date
and select the date format in which your data is (DMY).Hit Finish. MSExcel
will now convert the dates to the default date format of your computer.

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

thanks,

i got #value!.


"Mike H" wrote:

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default change text to real dates

Hi,

I suspect spaces at the start or end, try this

=DATEVALUE(LEFT(TRIM(A1),2)&"/"&MID(TRIM(A1),4,2)&"/"&RIGHT(TRIM(A1),2))

Mike

"driller" wrote:

thanks,

i got #value!.


"Mike H" wrote:

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default change text to real dates

Please check whether there are any other characters other than numerics and
dots in the cell..Just check the length of the entry using =LEN(A1). It
should be 8. If you have extra spaces use Find/Replace to replace space with
blank..and then try again..

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Jacob,

after selecting the dateresults the data produced is the same.
Any ideas? thanks for reply.

"Jacob Skaria" wrote:

Select the range of dates which needs to be corrected. From menu DataText to
Columns will populate the 'Convert Text to Columns Wizard' Hit NextNext will
take you to Step 3 of 3 of the Wizard. From Column Data format select Date
and select the date format in which your data is (DMY).Hit Finish. MSExcel
will now convert the dates to the default date format of your computer.

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

using len() i got all with 8.

from the two formulas suggested, i got same results.

26.04.09----#value!
11.06.09----11/6/2009-----06-Nov-09 ??

do i have some difficulty now?

"Mike H" wrote:

Hi,

I suspect spaces at the start or end, try this

=DATEVALUE(LEFT(TRIM(A1),2)&"/"&MID(TRIM(A1),4,2)&"/"&RIGHT(TRIM(A1),2))

Mike

"driller" wrote:

thanks,

i got #value!.


"Mike H" wrote:

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default change text to real dates

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default change text to real dates

Jacob,

I didn't know about this series of clips. An excellent source for beginners,
nice one.

Mike

"Jacob Skaria" wrote:

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

yeh, but not so accessible in my case.

"Mike H" wrote:

Jacob,

I didn't know about this series of clips. An excellent source for beginners,
nice one.

Mike

"Jacob Skaria" wrote:

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default change text to real dates

Yes Mike; an excellent source .... and also a nice way to resolve
disputes!!!.kidding)

"Mike H" wrote:

Jacob,

I didn't know about this series of clips. An excellent source for beginners,
nice one.

Mike

"Jacob Skaria" wrote:

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

=LEFT(A1,2)-----26
=MID(A1,4,2)-----04
=RIGHT(A1,2)-----09


len() = 8, kinda confusing...


"Mike H" wrote:

Hmmm,

Break the formula into 3 parts and tell me what each returns

=LEFT(A1,2)
=MID(A1,4,2)
=RIGHT(A1,2)

Mike

"driller" wrote:

using len() i got all with 8.

from the two formulas suggested, i got same results.

26.04.09----#value!
11.06.09----11/6/2009-----06-Nov-09 ??

do i have some difficulty now?

"Mike H" wrote:

Hi,

I suspect spaces at the start or end, try this

=DATEVALUE(LEFT(TRIM(A1),2)&"/"&MID(TRIM(A1),4,2)&"/"&RIGHT(TRIM(A1),2))

Mike

"driller" wrote:

thanks,

i got #value!.


"Mike H" wrote:

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default change text to real dates

Hmmm,

Break the formula into 3 parts and tell me what each returns

=LEFT(A1,2)
=MID(A1,4,2)
=RIGHT(A1,2)

Mike

"driller" wrote:

using len() i got all with 8.

from the two formulas suggested, i got same results.

26.04.09----#value!
11.06.09----11/6/2009-----06-Nov-09 ??

do i have some difficulty now?

"Mike H" wrote:

Hi,

I suspect spaces at the start or end, try this

=DATEVALUE(LEFT(TRIM(A1),2)&"/"&MID(TRIM(A1),4,2)&"/"&RIGHT(TRIM(A1),2))

Mike

"driller" wrote:

thanks,

i got #value!.


"Mike H" wrote:

Hi,

Try this

=DATEVALUE(LEFT(A1,2)&"/"&MID(A1,4,2)&"/"&RIGHT(A1,2))

Mike

"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

  #15   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default change text to real dates

OK Try if the century is 20...

=DATE("20" & RIGHT(A1,2),MID(A1,4,2),LEFT(A1,2))

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

yeh, but not so accessible in my case.

"Mike H" wrote:

Jacob,

I didn't know about this series of clips. An excellent source for beginners,
nice one.

Mike

"Jacob Skaria" wrote:

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards



  #16   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default change text to real dates

Mke & Jacob,

thanks..it solves ...!!! :)


"Jacob Skaria" wrote:

OK Try if the century is 20...

=DATE("20" & RIGHT(A1,2),MID(A1,4,2),LEFT(A1,2))

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

yeh, but not so accessible in my case.

"Mike H" wrote:

Jacob,

I didn't know about this series of clips. An excellent source for beginners,
nice one.

Mike

"Jacob Skaria" wrote:

Watch this 2 min video which will help
http://www.youtube.com/watch?v=24Z8TsyRVsY

If this post helps click Yes
---------------
Jacob Skaria


"driller" wrote:

Hello,

i have extracted text within texts in a column of data thru left & right
function.

then i have the texts result like this

26.04.09
11.06.09
23.06.09
05.07.09
12.07.09
30.09.09

I need to change it to real dates considering that the first 2 digits are
Days and the last 2 digits are Years.
e.g.
26.04.09 ---- 26-Apr-09 or 26/04/09

thanks for helping. Any suggestion is appreciated.

--
regards

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
Simple way to change text dates to numerical? Kathy Excel Discussion (Misc queries) 7 January 8th 09 02:11 AM
Conditional formating to change dates but also changes text [email protected] Excel Worksheet Functions 4 May 27th 07 06:28 PM
going from digits to real text Robert Excel Discussion (Misc queries) 2 February 6th 07 05:56 PM
Format text 'dates' to real dates Jacy Excel Worksheet Functions 4 July 24th 06 02:10 AM
Calculating average annual change in real estate value James Hobart Excel Discussion (Misc queries) 5 March 28th 06 04:54 AM


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