Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
If any one have the calendar extension object, please share the link.
Thanks,
also you can try Qlik Branch
Hi,
Create calendar in script will be suitable (not as an object - extension)?
Regards,
Andrey
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,
Not at all,
Use the extension above, It will appear as follow:
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:
Hope this helps !
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,
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;