Simple example:

A1 cell: 1/8/2009
B1 cell: =TEXT(WEEKDAY(A1),"dddd")

This will, for the given date, print the corresponding day.

Is this what you wished ?

Answer from Rook on Stack Exchange
๐ŸŒ
Exceljet
exceljet.net โ€บ get day name from date
Get day name from date - Excel formula | Exceljet
May 14, 2024 - CHOOSE is more work to set up, but it is also more flexible since it allows you to convert a date to a day name using any values you want. For example, you can use custom abbreviations or even abbreviations in a different language. In cell C15, CHOOSE is set up to use one-letter abbreviations that correspond to Spanish day names: ... If you use the formulas above on an empty cell, you'll get "Saturday" as the result. This happens because an empty cell is evaluated as zero, and zero in the Excel date system is the date "0-Jan-1900", which is a Saturday.
๐ŸŒ
Microsoft Support
support.microsoft.com โ€บ en-us โ€บ office โ€บ show-dates-as-days-of-the-week-14f02f1d-8e3d-45a5-bdf8-3d962bf15327
Show dates as days of the week - Microsoft Support
Under Category, click Custom, and in the Type box, type dddd for the full name of the day of the week (Monday, Tuesday, and so on), or ddd for the abbreviated name of the day of the week (Mon, Tue, Wed, and so on). To do this task, use the TEXT function. Copy the following data to a blank worksheet.
Top answer
1 of 10
55

Simple example:

A1 cell: 1/8/2009
B1 cell: =TEXT(WEEKDAY(A1),"dddd")

This will, for the given date, print the corresponding day.

Is this what you wished ?

2 of 10
20

The answer given above is only working by fluke because Excel thinks that 1/1/1900 was a Sunday* and by default Excel is using Sunday as first day of week for the Weekday function.

What you are actually calculating in that method is the day of the week as a number, then formatting that as a day based on that number interpreted as a date. Eg if your date is 1/2/2003 and you use the WEEKDAY function, this results in 7 (=Saturday). When you then format this as "dddd" you are actually getting the day name of the 7th day in Excel since its "epoch", ie 7/1/1900, which happens to be a Saturday*. This formula will break if someone opens it who has the option selected to use the 1904-based date system, as 1/1/1904 was not a Sunday, but a Friday. (yes I know hardly anyone uses that, but you don't want to build a solution which relies on that do you?)

You can make the formula shorter, faster and more robust simply by using

=TEXT(A1,"dddd")

You could of course just format the date cells themselves with a custom format as already suggested, depending on whether you really need this in a separate column or not. I often use date formats such as

ddd dd mmm yyyy

to give eg Sat 01 Feb 2003 so the date is explicit but shows the weekday name as well.

Using a second column and a TEXT function is essential if you want to use the weekday explicitly somewhere in a mail merge (for example), similarly for things like currencies and so on Excel > Word merging passes the actual underlying stored value rather than the on-screen formatted version, so regardless of the cell format, Word sees some horrible number. A true text field is passed 'as is' and displays properly in Word.

*in fact it is a Monday but Excel was written to match the incorrect dates in Lotus 1-2-3 which treated 1900 as a leap year when it is not.

๐ŸŒ
LearnExceltoexcel
learnexceltoexcel.com โ€บ home โ€บ get day name from date in excel
Get Day Name from Date in Excel โ€“ LearnExceltoexcel
November 2, 2024 - Learn to get day name from date with Excel formulas and Power Query. Convert date to day names using TEXT, CHOOSE and WEEKDAY Functions.
๐ŸŒ
Trump Excel
trumpexcel.com โ€บ home โ€บ get day name from date in excel (easy formulas)
Get Day Name from Date in Excel (Easy Formulas)
Below are the formats you can use ... Excel: d โ€“ shows the day value from the date. If the day value is less than 10, only one digit is shown and if itโ€™s 10 or more than 10, then two digits are shown. dd โ€“ shows the day value from the date in two digits. If the day value is less than 10, a leading zero is added to the number. For example, 5 would become 05 ยท ddd โ€“ this will show you the day name in the short format...
Published ย  December 20, 2023
๐ŸŒ
Ablebits
ablebits.com โ€บ ablebits blog โ€บ excel โ€บ date โ€บ days of week formula in excel to get day names or numbers from date
Days of week formula in Excel to get day names or numbers from date
October 18, 2023 - Let's assume that your date is in cell A3, and you want to show the day names as 2-letter abbreviations such as "Su" for Sunday, "Mo" for Monday, etc. The following formula works a treat: =CHOOSE(WEEKDAY(A3), "Su","Mo","Tu","We","Th","Fr","Sa") ...
๐ŸŒ
How To Excel
howtoexcel.org โ€บ weekday-names
7 Ways To Get The Weekday Name From A Date In Excel | How To Excel
We can now transform our dates ... heading and select Date from the options. With the date column selected, go to the Add Column tab. Select Date โžœ Day โžœ Name of Day....
๐ŸŒ
XL n CAD
xlncad.com โ€บ home โ€บ blog โ€บ find day name from date in excel
Find Day Name from Date in Excel - XL n CAD
March 3, 2022 - Right-click on the cells containing Dates > Format Cells > In the Number tab of the Format Cells dialog, select Custom from the options listed under Category and type in โ€˜ddddโ€™. For the first 3 letters of the day name, use โ€˜dddโ€™. Take the table containing dates into the Power Query Editor of Excel > Select the column containing Dates > go to the Transform tab of the Power Query Editor > Click on the split button for Date > Day > Name of Day
Find elsewhere
๐ŸŒ
MyExcelOnline
myexcelonline.com โ€บ home โ€บ get the day name for a date in microsoft excel โ€“ 3 easy ways
Get the Day Name for a Date in Microsoft Excel - 3 Easy Ways | MyExcelOnline
February 6, 2024 - Using the WEEKDAY function, you can obtain a numerical value ranging from 1 to 7 that represents the day of the week. This numerical value can then be used as an index in the Custom Number Format function to retrieve and display the corresponding ...
๐ŸŒ
Excel Champs
excelchamps.com โ€บ home โ€บ excel formulas list โ€บ how to get day name from a date in excel (formula)
How to Get Day Name from a Date in Excel (Formula)
April 30, 2024 - You can use the TEXT function for extracting a day name from a date. Letโ€™s say you have a date in cell A2 and you want to get the day name in cell B2.
๐ŸŒ
Excel Campus
excelcampus.com โ€บ home โ€บ tutorials (blog) โ€บ 3 ways to get the day name for a date
3 Ways to Get the Day Name for a Date - Excel Campus
April 10, 2016 - I have dates in one column and i want there weekday(monday) in another column. Can you please help me with the coding??? ... In VBA you can use the Format function to return the weekday. It works similar to the Text function in Excel. ... I hope that helps. ... The default for retrieving the day from date is always Saturday.
๐ŸŒ
Ablebits
ablebits.com โ€บ ablebits blog โ€บ excel โ€บ date โ€บ weekday formula in excel to get day of week, weekends and workdays
WEEKDAY formula in Excel to get day of week, weekends and workdays
October 10, 2023 - But let's look at it from a different angle and discuss some formulas that solve real-life tasks. By design, the Excel WEEKDAY function returns the day of the week as a number. To turn the weekday number into the day name, employ the TEXT function.
๐ŸŒ
YouTube
youtube.com โ€บ watch
How to Get Day Name From A Date in Excel - YouTube
How to Get Day Name from A Date in ExcelIn this excel tutorial for beginners Iโ€™ll show you an excellent trick to get day name from any date in excel. Suppose...
Published ย  December 27, 2021
๐ŸŒ
WPS Office
wps.com โ€บ academy โ€บ how-to-obtain-weekday-name-from-a-date-in-excel-(3-easiest-ways)-quick-tutorials-1863870
How to Obtain Weekday Name from a Date in Excel (3 Easiest Ways) | WPS Office Academy
The Text Function also enables you to apply formatting and conditional formatting to the converted text. ... 1. Name the text in which date is placed and type โ€œddddโ€ as format in text function like the example given below. 2. This will automatically convert it to the day of that date as ...
๐ŸŒ
YouTube
youtube.com โ€บ watch
How to Extract / Get Day from a date in Excel | Excel Tricks - YouTube
#MSExcel #ExcelTricks #DayfromDateIn Excel day can be extracted from a given date. The text function is used to extract or to get the day name from a given d...
Published ย  August 11, 2023
๐ŸŒ
YouTube
youtube.com โ€บ watch
Excel formula to get the Day name from a Date - YouTube
Excel formula to get the Day name from a Date.๐ŸJoin my online course on Excel Tableshttps://www.udemy.com/course/tables-in-excel/?referralCode=692FAFD07AA41...
Published ย  November 18, 2021
๐ŸŒ
YouTube
youtube.com โ€บ trumpexcel
Get the Day Name from Date in Excel (3 Easy Ways) - YouTube
In this video, I will show you 3 easy ways to get the day name from a date in Excel. So instead of a date, you can have the day name of that date (such as Mo...
Published ย  January 6, 2022
Views ย  41K
๐ŸŒ
Excel Tip
exceltip.com โ€บ home โ€บ excel date and time
How to Get day name from Date in Excel
February 24, 2020 - Change Format cell : Select the cell and Use shortcut key Ctrl + 1 to open Format cell dialog box and Select Long Date Format Style as shown below. ... If you wish to get the Day name in a new cell. Use the Formula ... โ€œddddโ€ - will result ...