Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to intepret a Date Range in My Data

Hi All,

I have a date range in my data which I need to be picked up which will drive other data analysis.

I have a start date and an end date, which I need linking to another piece of data:

When I select a 'DATE' I am hoping to see the applicable 'Start Date' and 'End Date' that this fits into -- can anyone help please?

Thanks in advance,

Joe

6 Replies
robert_mika
Master III
Master III

so if you pick up 20/01/2015 what would you see in the Start/End boxes?

Anonymous
Not applicable
Author

try field trigger

on Change "Date"

select field "startdate" as monthstart(Date)

select field "enddate" as monthend(Date)

Not applicable
Author

Hi,

See the attached solution.Worked out an example based on the data you provided in the above screenshot. Hope this helps.

Regards

Not applicable
Author

I would be expecting it to fall between 01/01/2015 and 31/01/2015:

robert_mika
Master III
Master III

Like this?

dates.jpg

Script:

load * inline

[

Date,Sales

12/30/2014,1

01/06/2015,4

01/13/2015,5

01/20/2015,6

01/27/2015,7

02/01/2015,9

]

List Boxes have Calucated Dimension

=MonthStart(Date)

=MonthEnd(Date)

and Title as

=Date(MonthStart(Date),'DD-MMM-YYYY')

and

=Date(MonthEnd(Date),'DD-MMM-YYYY')

Colin-Albert

Intervalmatch will link a single date to the relevant date range.

There is a clear explanation in this blog.   IntervalMatch