sort dates

D

Debgala

I have a report exported to XL as text file and converted to XL. The dates
appear as mm/dd/yy. I want to sort the dates by month & day, but want to
ignore the year. Is this possible? How?
Thanks,
 
B

Bob Phillips

Create a helper column with a formula of

=TEXT(A1,"mmdd")

and sort by the helper column
 
D

David McRitchie

Hi Deb,
Create a helper column, use the fill handle to copy down a formula like:
=Date(0,Month(a1), 1)
 
D

Debgala

Thank you David, both for your own solution, and for your recommending I use
Bob's. I'd tried a lot of stuff in a helper column - to no avail until now!
Thanks,
Deb
Hi Deb,
Create a helper column, use the fill handle to copy down a formula like:
=Date(0,Month(a1), 1)
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

Debgala said:
I have a report exported to XL as text file and converted to XL. The dates
appear as mm/dd/yy. I want to sort the dates by month & day, but want to
ignore the year. Is this possible? How?
Thanks,
 
Top