Oct 21 2021 08:02 AM - edited Oct 21 2021 08:03 AM
I am working in Excel. How can I convert the day of the week (derived from a formula that takes the date and turns it into a day of the week) into text?
Thanks for your help!
Oct 21 2021 08:12 AM
SolutionLet's say the formula with the day of the week is in D2.
In another cell, e.g. E2, enter the formula =TEXT(D2,"dddd") if you want the full name ("Thursday"), or =TEXT(D2,"ddd") if the want the abbreviated name ("Thu").
Oct 21 2021 08:27 AM - edited Oct 21 2021 08:29 AM
Thanks so much. That got me to the answer I needed -- which was the text (not the formula) in the cell. However, I copied the cells with the formula and used the Paste123 to get the text only of the day!
Oct 23 2021 03:59 AM
As a comment, if you want only to show weekday as the text, not to do other manipulation with that text, it's better to reference the date and apply to the cell "dddd" format. That could give more flexibility.