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

Date between 2 data sources

Hi,

I'm working on a dashboard with 2 data set and both containing multiple months of data. I want to create a slider that allows user to select up to six months data.

Data 1: contains the most recent six months data (Field Name: LONG_DATE)

Data 2: contains 24 months data. (Field Name: End_Date)

How to map them two together so when I select the date on the slider and both data will be apply?


Thank you!

Jasmine


Labels (1)
2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

You must call with the same name both fields data:

Load

     ...

LONG_DATE as mydate

...


load

...

End_Date as mydate

...


Use mydate as field in the slider


its_anandrjs
Champion III
Champion III

If there is common field between two tables or if this dates in the same table then use variables like

Let vMin1 = Peek('Date',0,'Temp');

Let vMax1 = Peek('Date',-1,'Temp');

Let vMin2 = Peek('Date2',0,'Temp');

Let vMax2 = Peek('Date2',-1,'Temp');

and use this variables in the slider objects.

Let me know

Hope this helps