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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
stekol61
Creator
Creator

Exclude current week

Hi!

I'm loading data and converts 'Date' to 'Week' as below .

How can I always exclude the current week when data is loaded?

LOAD

Year(event_start_time)&'-'& Week (event_start_time)as Week,

1 Solution

Accepted Solutions
sunny_talwar

May be this

Where WeekStart(event_start_time) <= WeekStart(Today());

View solution in original post

2 Replies
sunny_talwar

May be this

Where WeekStart(event_start_time) <= WeekStart(Today());

petter
Partner - Champion III
Partner - Champion III

You could filter by a

LOAD

    ....

    .....

FROM

   ....

WHERE

  event_start_time < WeekStart(Today(1));