Date Picker Filter in dashboard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 02:01 AM
Hi everyone,
I'm trying to to put a date filter in a dashboard that contain some reports. I want to have a date picker.
Can someone help me to find a way to do this ?
(sorry for my english);
thx!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 02:07 AM
If you have Performance Analytics Premium license you can go for interactive filters. It can be created using date time fields
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 02:39 AM
Yes, im trying to use interactive filters, but i dont find the way to put a calendar picker that user can pick a date to filter report.
If i understood correctly, we must predefine the dates in advance with date time fields. I would like the user to be able to choose a specific date. I want to use input date html for example. Thx for your time

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 03:14 AM
We had similar requirements. But unfortunately, there is no option to in dashboards to provide a date picker as filter. There are few custom solutions which are mentioned below, but i find them buggy and could be difficult to maintain in future.
Please mark this response as correct or helpful if it assisted you with your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2022 05:01 AM
Maybe i have find a way!
So i use an input date html, and on the onChange Function i retrieve the date and i concat this date in this querys :
sys_created_onON2022-10-14@javascript:gs.dateGenerate('"+ date +"','start')@javascript:gs.dateGenerate('"+ date +"','end')"
And it seems that it work, in my dashboard i select a date and the good data are display! Now i have to find a way to create a between date filter. What do you think about this ?