Expanding Data into multiple columns

  • Thread starter Thread starter Leen
  • Start date Start date
L

Leen

Hi
I have a large column containing dates is this format

08/12/2008

I want to put the month in it's own column, the day and the year. Basically
split them up into 3 columns.

I have no idea how to go about it.
 
Hi.

select the column then
Data|Text to columns
Delimited
Next
Put / in the 'Other' box
Finish

Mike
 
Thanks Mike
That worked except for the month. It broke the day and year out fine in
column B and C, but for the month it listed 1/3/1900 in column A.
 
Format column A as General


Leen said:
Thanks Mike
That worked except for the month. It broke the day and year out fine in
column B and C, but for the month it listed 1/3/1900 in column A.
 
If they're really dates, you can use:
=year(a1)
=month(a1)
=day(A1)
 
Then it's no longer in date format and the text to columns doesn't work.
 

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

Back
Top