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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
daniel_schneide
Contributor
Contributor

How to connect DateSlider with SelectionCalendar?

I have defined a SelectionCalendar in a script as follows:

// First Step: Define Start- und EndDate

LET vMinDate = floor(today()-2000) ;

LET vMaxDate = floor(today()) ;

// Second Step: Calculate days between start and end

SelectionCalendar:

LOAD

    Date($(vMinDate) + RowNo() -1) as [vSelectionDate]

    AutoGenerate($(vMaxDate)-$(vMinDate) +1)

;

In the Front end, there is a DateSlider:

Now I want to select all days in my SelectionCalendar between xSliderStart and xSliderEnd. Also when the slider moves, the selection days should change...

Any Ideas for that?

Labels (1)
0 Replies