Microsoft Excel Date Tips
Show Day Names With Your Dates (XL2000-XL2007)
If you ever need to show the name of the day in addition to the dates (e.g. Saturday, July 10) here are a couple of options.
Option 1: You can create a custom number format for the cells containing the dates
1) Press CTRL+1;
2) Select the Custom category;
3) In the Type field enter dddd, mmm y
Option 2: You can use the TEXT function to return a custom date based on a date in another cell.
Type =TEXT(A1,”dddd, mmm y”) where A1 is a cell containing a date.
With both of these options, you have lots of flexibility for creating date formats by using any combination of the following codes.
d – will return the day as a number without a leading zero (e.g. 1)
dd – will return the day as a number with a leading zero (e.g. 01)
ddd – will return the abbreviated weekday (e.g. Sun)
dddd – will return the full weekday (e.g. Sunday)
m – will return the month as a number without a leading zero (e.g. 1)
mm – will return the month as a number with a leading zero (e.g. 01)
mmm – will return the abbreviated month (e.g. Jan)
mmmm – will return the full month (e.g. January)
yy – will return the year as a 2-digit number (e.g. 10)
yyyy – will return the year as a 4-digit number (e.g. 2010)
You can also include commas, dashes, slashes, parentheses, within the format code. For example, the code (dddd) mmmm d, yyyy will return (Saturday) July 10, 2010.
via Microsoft Excel Tips.





