How to Convert Date to Day of Week in Excel: A Step-by-Step Guide

Excel can display the day of the week for a date without changing the underlying date value. The best method depends on whether you only want the date to look like a weekday or need the weekday name as text for another formula.

Method 1: Display a Date as a Day of the Week

  1. Select the cells containing your dates.
  2. Press Ctrl + 1 to open Format Cells.
  3. Select Custom.
  4. Enter dddd in the Type box for the full weekday name, such as Monday. Use ddd for an abbreviated name such as Mon.
  5. Click OK.

This changes only the display. The cell still contains the original Excel date, so sorting and date calculations continue to work normally.

Method 2: Return the Weekday Name with a Formula

If the date is in A2 and you want a separate cell containing the weekday name, use:

=TEXT(A2,"dddd")

For a three-letter abbreviation, use:

=TEXT(A2,"ddd")

The TEXT function returns text, which is useful for labels and reports but is different from preserving a real date value.

Method 3: Return a Weekday Number

Use the WEEKDAY function when you need a number that represents the day rather than its name:

=WEEKDAY(A2,2)

With the second argument set to 2, Monday is 1 and Sunday is 7. This can be useful for sorting, conditional formulas, and identifying weekends.

Why Is Excel Showing a Number Instead of a Date?

Excel stores ordinary dates as serial numbers. If a cell loses its date formatting, you may see that serial value. Apply an appropriate Date or Custom number format rather than replacing the value.

What If the Formula Does Not Work?

Make sure Excel recognizes the source as a real date. Imported data sometimes contains dates stored as text. Changing the number format alone will not convert text into a date. You may need to clean or convert the imported values first.

Also remember that ambiguous dates such as 3/4/2026 can be interpreted differently depending on regional settings. When importing important data, verify that Excel has interpreted the month and day correctly before building weekday formulas around it.

Get Our Free Newsletter

How-to guides and tech deals

You may opt out at any time.
Read our Privacy Policy