Splitting dates

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Hi

Anybody have an answer to a problem I don't see any solution ? I have a
spreadsheet with 25,000+ lines. Within the line one column is a date of
birth in the format 04/04/1954.............is there any way to "split"
this date into three seperate columns (Day) (Month)
(Year)............what we want to be able to do is address those on the
list on the month of their birth. Grateful for any help

MNW
 
Mike

Assuming column A contains dates.

In B1 =YEAR(A1) skip this if only month needed.

In C1 =MONTH(A1)

In D1 =Day(A1) skip this if only month needed.

Select B1:D1 and double-click on the fill handle of D1.

You can then sort by month.


Gord Dibben Excel MVP
 
Gord said:
Mike

Assuming column A contains dates.

In B1 =YEAR(A1) skip this if only month needed.

In C1 =MONTH(A1)

In D1 =Day(A1) skip this if only month needed.

Select B1:D1 and double-click on the fill handle of D1.

You can then sort by month.


Gord Dibben Excel MVP

Many thanks.........seems too simple..........
 

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

Similar Threads

Calculating a date 3
Reorganizing Data 2
Dates Within A Range 2
Access Count dates within a Month 4
Sorting by Birthday Anniversary 2
age calculation 3
Calculating age from two date fields-Excel 2003 3
date sorting 3

Back
Top