How do I sort data by Month on the date format like (02/04/97)?

T

Todkerr

Not sorting by year....actually sorting from earliest to latest or visa versa.
You should add a column with the following formula for each date:

=month(a1) where a1 is the first date/month you want sorted.

The month formula will return the number 1 through 12 regardless of the year
of the actual date. Then you can sort by your new column....

Alternatively if you don't care about the yearly data, you could convert all
the data to the same year.

HTH

HTH
 
J

Jay

I try to sort the list of date by Month. But Excel only can sort by

One way is to use a "helper" column. In the first row of an unused column,
put
=DAY(A1)
(assuming column A holds dates) and copy down.

Then select all columns of interest, including the helper, and sort by the
helper column first.

The helper can be hidden if necessary.
 
G

Gord Dibben

Winnie

In an adjacent column enter = MONTH(A1).

Copy down then sort on that column.


Gord Dibben Excel MVP
 
J

Jay

I try to sort the list of date by Month. But Excel only can sort by

One way is to use a "helper" column. In the first row of an unused column,
put
=MONTH(A1)
(assuming column A holds dates) and copy down.

Then select all columns of interest, including the helper, and sort by the
helper column first.

The helper can be hidden if necessary.

(I used "DAY" a minute ago, but should've used "MONTH.")
 
Top