Date Format

A

aozora

Hi all,
I have the column of date in general/text format as "20080402", how can i
change it into date format, is there any format to change directly?
Thanks a lot
 
D

Dave Peterson

Select the column
Data|text to columns (xl2003 menus)
fixed width, but don't add any lines and remove all that excel guessed.
Choose date
YMD (or YDM if that sample was 2008-Feb-04)

And format the cell using the nice date format you like.
 
H

HARSHAWARDHAN. S .SHASTRI

As your original data is in text format , pl use following formula.

=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2))
 
R

Rick Rothstein

Here is a formula that is a little shorter and with 3 less function calls...

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

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