Google Sheets – Get Day from Date

google sheetsworksheet-function

I haven´t found much searching on the net.

The case:
One cell is filled out in date-format by the TODAY() function. How can I update another cell with the actual day as string? I´ve seen older examples by using CHOOSE func, or the the WEEKDAY() func formatted. Nothing seems to work for me.

Best Answer

=TEXT(A1;"dddd")

where A1 is the cell with the date.