Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
vanderson009
Creator III
Creator III

DayFunction

Hi Community,


Suppose i have date but i want to display Day for that respective Date.


Then, how could i display????


Thanks


Villyee

1 Solution

Accepted Solutions
rajeshvaswani77
Specialist III
Specialist III

Hi Villyee

Try this.

=Date(today(),'WWW')

for three letters

=Date(today(),'WWWWWW')

for displaying the full weekday ex: Saturday

thanks

-RV

View solution in original post

4 Replies
rajeshvaswani77
Specialist III
Specialist III

Hi Villyee

Try this.

=Date(today(),'WWW')

for three letters

=Date(today(),'WWWWWW')

for displaying the full weekday ex: Saturday

thanks

-RV

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

=weekday(Today())

Output : Sat

Regards,

Jagan.

Not applicable

Just use

 

=

WeekDay(Date)

er_mohit
Master II
Master II

Try this function if you want complete DayName like Sunday then try this

Date(Datefield,'WWWW') as FullDayName

or if you want as alike your default dayname like sun,mon

then

WeekDay(Datefield) AS CalendarDayName

hope it helps