Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have some text data like 26/10/2007 in a column which is extracted from web
page. I changed the format from text to date. Although it is in date format real conversion does not takes place. When I am doing sorting operation it sorts the data as it is text value. How to convert the text data to date? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This will convert the text date to a date serial number:
=DATEVALUE(MID(A1,4,2)&"/"&LEFT(A1,2)&"/"&RIGHT(A1,4)) Assuming that all the dates have a 4 digit year. -- Kevin Backmann "ezil" wrote: I have some text data like 26/10/2007 in a column which is extracted from web page. I changed the format from text to date. Although it is in date format real conversion does not takes place. When I am doing sorting operation it sorts the data as it is text value. How to convert the text data to date? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the text dates are all in a single column, you can:
Select the range data|text to columns (xl2003 menu system) fixed width choose date and dmy Then finish up the wizard and give the range the date format that you like. ezil wrote: I have some text data like 26/10/2007 in a column which is extracted from web page. I changed the format from text to date. Although it is in date format real conversion does not takes place. When I am doing sorting operation it sorts the data as it is text value. How to convert the text data to date? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert Text to DATE | Excel Discussion (Misc queries) | |||
Convert date to text | Excel Worksheet Functions | |||
how do i convert text to date (mm/yy text to mm/dd/yyyy date)? | Excel Discussion (Misc queries) | |||
convert text to date | Excel Discussion (Misc queries) | |||
Help: How do I convert a text date into a real date format | Excel Worksheet Functions |