How to show complete date, weekday names

Hi Team,
how can i show name of the day (monday, tuesday, โ€ฆ)?

br

0 6 1,321
6 REPLIES 6

Edit Your post title mentions โ€œHow To show complete dateโ€ and in the post you have mentioned โ€œweekday namesโ€ So I presume you wish to display entire date along with the weekday name.

If so, please try an expression something like

TEXT([Date Column Name],โ€œDDD DD MMM YYYYโ€)

will display something like below

Fri 01 Jan 2016

The format
CONCATENATE(TEXT([Date Column Name ],โ€œDDDโ€),"day ", [Date Column Name])
will display in something like below
Monday 02/01/2016

In general one can format the date in many ways using TEXT() expressions. Please refer to below help article

@Suvrutt_Gurjar How about when itโ€™s a Wednesdayโ€ฆ or should we call it Wedday

@Aleksi ,

Oops ! Great catch !

Wedday will be very funny indeed

Even Saturday may become Satday !

Minor change in above expression. Please make it something like

CONCATENATE(TEXT([Date Column Name],โ€œDDDDโ€),", ", [Date Column Name])

The TEXT() expressions seem to be really powerful. The output of above expression will be something like below

Saturday, 01/02/2016

**Edit:**Minor typo edited.

ok, thks a lot , its running OK.
I used : โ€œTEXT([Date],โ€œDDDDโ€)โ€

br

Yes @J_jvs it can be done.
Use the function as WEEKDAY([YourDateColumn]) it will return the matching weekday number for the date value in your column.
As you want to display this number as the name of the weekday, you should construct an IFS expression with the WEEKDAY function like below

IFS( WEEKDAY(TODAY())=โ€œ1โ€,โ€œSundayโ€, WEEKDAY(TODAY())=โ€œ2โ€,โ€œMondayโ€, WEEKDAY(TODAY())=โ€œ3โ€,โ€œTuesdayโ€, WEEKDAY(TODAY())=โ€œ4โ€,โ€œWednesdayโ€, WEEKDAY(TODAY())=โ€œ5โ€,โ€œThursdayโ€, WEEKDAY(TODAY())=โ€œ6โ€,โ€œFridayโ€, WEEKDAY(TODAY())=โ€œ7โ€,โ€œSaturdayโ€ )

Replace WEEKDAY(TODAY()) with your WEEKDAY([Your Date Column]).

Top Labels in this Space