Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
Andrei_Faibich
Contributor III
Contributor III

Weekdays names displaying instead of weekdays numbers

I cannot manage to make weekdays names to be displayed instead of weekdays numbers

Andrei_Faibich_0-1659441060808.png

There is any trick?

Here are my settings:

SET DayNames = 'Mon;Tue;Wed;Thu;Fri;Sat;Sun';
SET LongDayNames = 'Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sunday';

Thanks for any help.

Labels (3)
1 Solution

Accepted Solutions
Or
MVP
MVP

There shouldn't be any trick to it - this is the default behavior:

Load Rand() as Measure1, Weekday(Date(Today()-RecNo())) as WeekDay
Autogenerate(100);

Or_0-1659442630126.png

I'd suggest checking if you perhaps toggled the Continuous option:

Or_1-1659442678447.png

 

In which case you should disable it.

 

View solution in original post

2 Replies
Or
MVP
MVP

There shouldn't be any trick to it - this is the default behavior:

Load Rand() as Measure1, Weekday(Date(Today()-RecNo())) as WeekDay
Autogenerate(100);

Or_0-1659442630126.png

I'd suggest checking if you perhaps toggled the Continuous option:

Or_1-1659442678447.png

 

In which case you should disable it.

 

Andrei_Faibich
Contributor III
Contributor III
Author

Thank you very much,  Continuous scale option was the issue!