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: 
Not applicable

Date selection

Hi experts

I have the following statement selectin values that are within the last month:

resident mitarbeiter where datum > Date(AddMonths(Today(),-1)) group by marnr;

I would like to have a statement where I only include values within the last 3 days.

Can someone help me with this?

Thanks

Jan

1 Solution

Accepted Solutions
MarcoWedel

resident mitarbeiter where datum > Today()-3 group by marnr;

View solution in original post

2 Replies
MarcoWedel

resident mitarbeiter where datum > Today()-3 group by marnr;

Not applicable
Author

Hi Jan,

You can try the condition datum >= date(today(),-3).

Or upload the sample document.