Hi Althea!
If all your dates are before 1900, then they are being viewed as text
by Excel which only allows dates back to 1-Jan-1900
You could set up a duplicate helper column and then apply Data > Text
to Columns on the Helper column using the / as the delimiter. That
would give you columns for day, month and years and you could sort
those in year > month > day order.
Alternatively, you could set up a helper column and parse the date
entries using:
=--RIGHT(A1,4)*10000+IF(ISNUMBER(--MID(A1,FIND("/",A1)+1,2)),--MID(A1,
FIND("/",A1)+1,2),--MID(A1,FIND("/",A1)+1,1))*100+IF(ISNUMBER(--LEFT(A
1,2)),--LEFT(A1,2),--LEFT(A1,1))
This will give a list of numbers such as 18500112 for 12 Jan 1850 and
you can sort those numbers to get the right order. In passing the
format of this number yyyymmdd is the ISO8601:2000 non-separated
agreed form and the sort capability was probably one reason why it was
selected. Many computer programmers have used this form of date
numbering for years.
--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.