Sorting pre-1900 dates

D

David Kilner

I have a list of pre-1900 dates which Excel refuses to
sort. Is there a way to make it sort this list into
chronological order (the dates being in dd/mm/yyyy
format) ?
Thanks,
David
 
F

filky

I have a workaround that will do it. I couldn't find a way of mergin
this into a single formulae though.
First create 3 new columns to seperate out the day, month and year
=LEFT(A10,2)
=MID(A10,4,2)
=RIGHT(A10,4)
Then use the DATE function to join them back together again
=DATE(E10,D10,C10)
This will add 1900 years to the year you actually have so that exce
can recognise the date as a valid date (post 1900). Then sort th
whole row (including your original text format) on the new date
 
N

Norman Harker

Hi David!

You need a helper column to get the dates into yyyy/mm/dd format.

You can use the formula:

=RIGHT(A1,4)&MID(A1,3,4)&LEFT(A1,2)

This converts (eg) 14/07/1789 to 1789/07/14
 

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

Sorting Pre-1900 dates 1
Date format pre-1900. 1
Dates prior to 1900 2
Pre-1900 Dates 1
REPOST: Date format pre-1900. 2
can I format dates older than 1900 1
Date Formatting 1
Counting Cells by Thier Month 1

Top