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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculate weekly closures

Hi I am looking for some help on below. Scenario is that I want to capture weekly closures. I have data and desired output as per attached can you please throw some ideas.

Thanks

Mahesh

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See attached qvw.


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See attached qvw.


talk is cheap, supply exceeds demand
maxgro
MVP
MVP

LOAD

  Date,

     Status

FROM

Example.xlsx

(ooxml, embedded labels, table is Sheet1);

dimension          =pick(match (week(Today()) - Week(Date),0,1,2,3), 'Current', 'PW', 'PPW', 'PPPW')

expression        count({$ <Status={Closed}>} Status)

                        count({$ <Status={Open}>} Status)

1.jpg

Not applicable
Author

Thank you guys for the idea