Date Sort

K

kuri

How do you sort a list of birth dates so that they are in
order for the year, this would be for a birthday list for
staff. The format of the data is dd:mm:yy.
 
M

Mike

Whatever the format is, any dates (with times) will be sorted with the order of year, month, day(, hour, minute, second).
Why don't you try first before asking?
Did you have any problem?
 
A

Anon

kuri said:
How do you sort a list of birth dates so that they are in
order for the year, this would be for a birthday list for
staff. The format of the data is dd:mm:yy.

You need to make a 'helper' column with formulas to convert each date to
have the same year, and then sort on that.

For this, you could use a formula such as
=DATE(2003,MONTH(A1),DAY(A1))
copied down. It doesn't matter what year you choose (1 would be just as good
as 2003) - they just need to be the same as each other.
 

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