JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,676
- Office Version
- 365
- Platform
- Windows
I have a table of family members with their dates of birth. I would like to sort it by month and day ignoring the year. Here is a sample table. The only way I could think of was to add a helper column with just the month and day. Is there a better way that does not require the helper column?
Christmas & Birthday Candy.xlsx | |||||
---|---|---|---|---|---|
C | D | E | |||
4 | Name | DoB | m/dd | ||
5 | Joe | 1/21/1980 | 01.21 | ||
6 | Sally | 2/03/1944 | 02.03 | ||
7 | Billy | 5/24/1978 | 05.24 | ||
8 | Nancy | 8/15/1955 | 08.15 | ||
9 | Henry | 10/10/1994 | 10.10 | ||
10 | Linda | 12/17/2012 | 12.17 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E5:E10 | E5 | =TEXT([@DoB],"mm.dd") |