Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I cannot manage to make weekdays names to be displayed instead of weekdays numbers
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.
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);
I'd suggest checking if you perhaps toggled the Continuous option:
In which case you should disable it.
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);
I'd suggest checking if you perhaps toggled the Continuous option:
In which case you should disable it.
Thank you very much, Continuous scale option was the issue!