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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Search in date interval

If I can´t do an IntervalMatch, can I choose a day in my calender and find the day in my interval in a another way?

1 Solution

Accepted Solutions
Not applicable
Author

if you use that formula as an expression within a pivot chart (Dimension is ID)

if(Start<=ONLY(CalendarDate) AND Slut >=ONLY(CalendarDate), Start, NULL())

you will get all Start fields which within Start and Slut.

Be aware, only one date must be selected!

Best regards

Michael

View solution in original post

3 Replies
Not applicable
Author

if you use that formula as an expression within a pivot chart (Dimension is ID)

if(Start<=ONLY(CalendarDate) AND Slut >=ONLY(CalendarDate), Start, NULL())

you will get all Start fields which within Start and Slut.

Be aware, only one date must be selected!

Best regards

Michael

Miguel_Angel_Baeyens

Hi Viktoria,

Download and check this application on how to use a calendar with variables (storing from and to dates) and how to use them in set analysis.

Hope that helps.

Miguel

Not applicable
Author

Thanks for the help!