Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calendar extension object for Qlik sense environment

Hi,

If any one have the calendar extension object, please share the link.


Thanks,

8 Replies
shraddha_g
Partner - Master III
Partner - Master III

also you can try Qlik Branch

ahaahaaha
Partner - Master
Partner - Master

Hi,

Create calendar in script will be suitable (not as an object - extension)?

Regards,

Andrey

Not applicable
Author

Hi Andrey,

I will create calendar in script only, but I need to show the complete calendar in presentation so I need object like slider calendar in qlikview.

Is there any optimization issue with extension objects?

Thanks,

ahaahaaha
Partner - Master
Partner - Master

May be this Qlik Branch ? Although I try not to use extensions.

Regards,

Andrey

OmarBenSalem

Not at all,

Use the extension above, It will appear as follow:

Capture.PNG

As you can see, you can't select dates above the 06/dec 2016.

Since the last date that exists in my source is the 06/12/2016, we can have an option to limit our calendar object.

To do so, (if you want to) , go to your script:

maxDate:

LOAD

max(YourDate) as maxDat

Resident YourTable; // where YourDate exists.


let vMaxDate=FieldValue('maxDat',1);

let maxDate=date(vMaxDate,'MM/DD/YYYY');

minDate:

LOAD

min(YourDate) as minDat

Resident YourTable;

let vMinDate=FieldValue('minDat',1);

let minDate=date(vMinDate,'MM/DD/YYYY');



In the extension,

You do as follow:

Capture.PNG

Hope this helps !

Not applicable
Author

Hi,

Thanks to all for your reply.

@ Omar, calendar object which you shared that I used earlier in extensions but it is not appearing  in qlik sense tool.

Thanks,

bkramadan
Contributor
Contributor

Thank you for sharing the info, however is there any way to get or store the value select in the date picker in a variable, in case i am using single date;