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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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?

Labels (1)
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
Support
Support

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!