Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

displaying current weeks data

hi

i am trying to display a set of data according to the days of the weak.. as shown in the image... Untitledcc.png

the issue i have is how can i extract the data only for the current week ?? (i need to display the data only of the present week. at the moment it combines all days of the month  and display )

would appriciate if some one could help me with this issue

thank you in advance

2 Replies
ecolomer
Master II
Master II

Hi

Yu can use the week function for have the number of week in the year and select the actual week

Week(Now()) = 32

If you need more explain, tell me

Saludos,

Enrique Colomer

Example for Calendar:

LET vMin=num(Peek('FechaMin',0,'FEC_LIM'));

LET vMax=num(Peek('FechaMax',0,'FEC_LIM'));

CAL:

LOAD

  Date(IterNo()+$(vMin)-1)   as CFecha,

  Year(Date(IterNo()+$(vMin)-1)) as CAño,

  Month(Date(IterNo()+$(vMin)-1))  as CMes,

  Week(Date(IterNo()+$(vMin)-1))   as CSemana,

  WeekStart(Date(IterNo()+$(vMin)-1)) as CSemIni,

  WeekEnd(Date(IterNo()+$(vMin)-1)) as CSemFin

  AutoGenerate 1 While IterNo()+$(vMin)-1<=$(vMax);

sujeetsingh
Master III
Master III

Just use a variable which takes the current selected week if selection made else it will take the max week of the calender .