Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need Help on Straight Table filteration

Need help in Straight table filter

I have a column called Report_Date which is having dates  in it . I need to generated a straight table which will show me next 5 days Report_Date column data from today onwards . Say today date is 23rd April 2015 so it should show only those records starting from today to 28th April 2015 in straight table.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

with this script

load

  date(makedate(2015) +floor(rand()*365)) as reportdate,

  rand()*10 as exp

AutoGenerate

  1000;

use this expression

sum({$<reportdate={">=$(=Today())<=$(=date(num(Today())+5))"}>} exp)

1.png

View solution in original post

1 Reply
maxgro
MVP
MVP

with this script

load

  date(makedate(2015) +floor(rand()*365)) as reportdate,

  rand()*10 as exp

AutoGenerate

  1000;

use this expression

sum({$<reportdate={">=$(=Today())<=$(=date(num(Today())+5))"}>} exp)

1.png