Forum Discussion
harikm007
03-05-2025Data Warehouse
Hi BharatKankate ,
Try the below approach:
Add a widget filter to the date field. In the filter popup, set 'Day' as level and add the below custom jaql (assuming the start date is within the last 99999999 days)
{
"last": {
"count": 99999999,
"offset": 7
}
}
-Hari