Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filter Date Range

Hi Friends

Is it possible to selecy date range prompt

Like

Last 1 month or last 6 months or some date range.?

Based on filter selection value my report should change.

Thanks

Govind R

6 Replies
Gysbert_Wassenaar

If you want to create a list of ranges like 'Last Month' and 'Last 6 Months' then you'll have to create a new field in the script for that.

MyTable:

LOAD

    ...some fields...,

    MyDate,

    12*(Year(Today())-Year(MyDate)) + Month(Today()) - Month(|MyDate) as MonthsAgo,

    ...some more fields...

FROM

    ...source...

    ;


MyDateRanges:

LOAD * INLINE [

MonthsAgo, DateRange

0, Current month

1, One month ago

2, Two months ago

....etc

12, Twelve months ago

1, Last three months

2, Last three months

3, Last three months

1, Last six months

2, Last six months

3, Last six months

4, Last six months

5, Last six months

6, Last six months

1, Last twelve months

2, Last twelve months

3, Last twelve months

4, Last twelve months

5, Last twelve months

6, Last twelve months

7, Last twelve months

...etc

11, Last twelve months

12, Last twelve months

];


You can then add the new field DateRange in a Filter Pane so users can select from those date ranges   


talk is cheap, supply exceeds demand
ecolomer
Master II
Master II

Yes it is possible.

You can have a list with dates and you can select by expression, par example, if you have list of days, you can write > 12/07/2016 in order to select dates in the range 13/07/2016 to 12/08/2016 (last month) ....

ecolomer
Master II
Master II

You can see this:

date range

Not applicable
Author

I am using qlik sense.Can you please give me qlik sense solution

Not applicable
Author

Hi I am new to Qlik sense.Please give me steps.

Not applicable
Author

I created script like

Load

[ACT_START_DATE],

    date([ACT_START_DATE])=today()-1  as Yesterday,

    date([ACT_START_DATE])=today()-2 as DaybeforeYesterday

......

Now how can i call this report.

Date: Yesterday or DaybeforeYesterday...... each values in drop down list.How can i achieve this.