Often you will want to extract a month or day of the week from an Excel date. This is extraordinarily easy to do using the text function.

To get the name of the day of the week from a date in, for example, cell A1 type this into another cell:

= TEXT(A1,”dddd”)

This will give you the full day name spelled out such as Monday or Tuesday.

If you want a three character name use:

= TEXT(A1,”ddd”)

The same basic formula can be used to get the month of the year from a date. Use this to get the month name spelled out in full:

= TEXT(A1,”mmmm”)

Use this to get the month of the year spelled out in three characters:

= TEXT(A1,”mmm”)

and this for a single letter month:

= TEXT(A1,”mmmmm”)

This formula can be easily constructed and copied down a column of dates to extract just the information you want very quickly and easily.

The Excel help file has some information about the different formats you can use to extract data using the TEXT function.

Helen Bradley