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

creating filters for last24 hours, last 7 days etc.,

We have our data in hour granularity. schema is like this

power_consumed:

LOAD

area,

power,

time;

SELECT

area,

power,

[time]

FROM utilisation;


In our charts x- axis is time, y axis is say power and area. I want to create a chart where I can have a drop down or buttons like last24 hours, last 7 days etc., and on selection I should be seeing only 24 hours or 7 days or 30 days of data.

3 Replies
rittermd
Master
Master

We are using an extension called Field UI that you can get from Qlik Branch.

You can define the expression for the button something like this.  This particular button is for the past 90 days.

=if(CalendarDate > (today()-90), '90 Days')

You could do calculations like this on your fields for the time periods that you want to see when the user clicks on the button.

Anil_Babu_Samineni

IS there any challenge when you face any issue?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Hi Anil, the problem I am facing is that how to display the filter to show last24 hours, last 7 days etc


I created variables like this

LET v24HoursAgo = Date(now()-1, 'MM/DD/YYYY hh:mm:ss');

LET v7DaysAgo = Date(now()-7, 'MM/DD/YYYY hh:mm:ss');

and created filter panels with fields like =time > v24HoursAgo, but filter panel comes with a dropdown with values as -1 and 0 which we are looking to avoid here