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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sat_tok52
Creator
Creator

WeekStart From Sunday-Saturday

Hi All,

Currently My date Column is giving week from Monday-Sunday,but My user want see week should be Sunday-Saturday,How can I change .Any Help.

Thanks,

Sateesh

5 Replies
Anil_Babu_Samineni

Change from default

SET DayNames='Sun;Mon;Tue;Wed;Thu;Fri;Sat';

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar

Play around with this variable in the environmental variable in the script

SET FirstWeekDay=6;

Also, look here:

FirstWeekDay ‒ QlikView

Capture.PNG

qlikview979
Specialist
Specialist

Hi If you  want only

Saturday,

Sunday

May be this

LOAD ID,

    PRODUCT,

    SALES,

  weekday(DATE) as DATE,

 

  FROM

Source

(ooxml, embedded labels, table is Sheet1) Where match(WeekDay(DATE),'Sat','Sun');

Colin-Albert
Partner - Champion
Partner - Champion

This blog explains how to set the week start for both QlikView and Sense

Redefining the Week Start

qlikview979
Specialist
Specialist

Hi May be this

SET DayNames='Sun;Mon;Tue;Wed;Thu;Fri;Sat';

Reards,

Mahesh