Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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?

0 Replies