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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Last 7 Days Date in ListBox

Hello All,

How can we have last 7 days date in listbox.

Please help

Regards,

Shree Angane

1 Solution

Accepted Solutions
maxgro
MVP
MVP

=if(date >= (today()-7), date)

View solution in original post

4 Replies
swarup_malli
Specialist
Specialist

try this  in your List Box Expression

if(yourdatefield > =Date(Today()-7),yourdatefield)

Not applicable
Author

maxgro
MVP
MVP

=if(date >= (today()-7), date)

MK_QSL
MVP
MVP

Use below in your List Box Expression

=if(DateField > Date(Today()-7),DateField)