Arrange Birthday List by MM/DD excluding YYYY

  • Thread starter Thread starter wendyg21
  • Start date Start date
W

wendyg21

How do you arrange a column of birthdates so that the days are in an
ascending order? Excel automatically arranges it according to age. If
anyone knows, please help. I've tried about everything! Thanks.
 
Insert a helper column. If the dates are in column A:

=TEXT(MONTH(A1),"00")&TEXT(DAY(A1),"00")
Copied down

Now use that column as the sort key

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| How do you arrange a column of birthdates so that the days are in an
| ascending order? Excel automatically arranges it according to age. If
| anyone knows, please help. I've tried about everything! Thanks.
|
 
Suppose a date is in A1
Use a helper column with:
=TEXT(MONTH(A1),"00")&TEXT(DAY(A1),"00")
This gives text in the form mmdd where mm and dd are digits
Copy down the column and sort on the helper column
best wishes
 
Or use: =TEXT(A1,"mmdd")

Bernard said:
Suppose a date is in A1
Use a helper column with:
=TEXT(MONTH(A1),"00")&TEXT(DAY(A1),"00")
This gives text in the form mmdd where mm and dd are digits
Copy down the column and sort on the helper column
best wishes
 

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

Back
Top