Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • Conditional Formatting New Rule with Formulas in Excel
  • Calculate Conditional Percentile ‘IF’ in table in Excel
  • How to count table columns in Excel
  • How to Create One and Two Variable Data Tables in Excel
  • How To Load Analysis ToolPak in Excel

References

  • Count rows that contain specific values in Excel
  • How to use Excel FORMULATEXT function
  • Vlookup Examples in Excel
  • MATCH function: Description, Usage, Syntax, Examples and Explanation
  • Approximate match with multiple criteria in Excel

Data Validations

  • Excel Data validation unique values only
  • Excel Data validation only dates between
  • Excel Data validation must contain specific text
  • Excel Data validation whole percentage only
  • Excel Data validation date in specific year

Get day name from date in Excel

by

If you need to get the day name (i.e. Monday, Tuesday, etc.) from a date or to convert the date into a day name, there are several options depending on your needs.

Formula

TEXT(B4,"dddd")

Explanation

Do you just want to display the day name?

If you only want to display a day name, you don’t need a formula – you can use a custom number format. Select the date, then go to Format cells (Ctrl + 1 or Cmd + 1)  > Custom, and enter one of these custom formats:

"ddd"  // "Wed"
"dddd" // "Wednesday"

Excel will display only the day name, but it will leave the date value intact.

Worked Example:   How to convert numbers to text using TEXT function in Excel

Do you want to convert the date into a day name?

If you want to convert the date value to a text value, you can use the TEXT function with a custom number format like “ddd”. The formula looks like this:

=TEXT(B4,"ddd")

The TEXT function converts values to text using the number format that you provide. Note that date is lost in the conversion, only the text for the day name remains.

Worked Example:   Create date range from two dates in Excel

A more flexible way to get a day name from a date

If you don’t want to use a helper table, you can also map weekday number to a month name directly in the CHOOSE function like so:

=CHOOSE(WEEKDAY(B4),"Sun","Mon","Tue","Wed","Thu","Fri","Sat")

In this case, enter the weekday names you want to return (abbreviated or not) as values in CHOOSE, after the first argument. WEEKDAY will extract a weekday number, and CHOOSE  will use this number to return the nth value in the list. This works because WEEKDAY returns a number 1-7 that corresponds to a given day of the week. With default settings, Sunday = 1 and Saturday = 7.

Worked Example:   Convert date to text in Excel

CHOOSE is more work to set up, but it is also more flexible, since it allows you to map a date to any values you want (i.e. you can use values that are custom, abbreviated, not abbreviated, different language, etc.)

Post navigation

Previous Post:

Number and Text Filters Examples in Excel

Next Post:

Convert date string to date time in Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • Nested IF function example in Excel
  • FALSE function: Description, Usage, Syntax, Examples and Explanation
  • SWITCH function example in Excel
  • How to use Excel NOT Function
  • Invoice status with nested if in Excel

Date Time

  • Convert date to Julian format in Excel
  • How to calculate months between dates in Excel
  • How to calculate next day of week in Excel
  • Sum race time splits in Excel
  • Get work hours between dates custom schedule in Excel

Grouping

  • Running count group by n size in Excel
  • How to randomly assign people to groups in Excel
  • Group arbitrary text values in Excel
  • Group times into unequal buckets in Excel
  • Map inputs to arbitrary values in Excel

General

  • How to calculate percentage of total in Excel
  • How to increase by percentage in Excel
  • How to create dynamic named range with INDEX in Excel
  • List worksheet index numbers in Excel
  • How to make excel worksheets print on one page?
© 2023 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning