Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to get next immediate available value

for example if i have dates as

1/10/2013,

4/10/2013,

5/10/2013

when i select 4/10/2013 I want 5/10/2013 related measures, and when i select 1/10/2013 i need measures (like sum sales) of 4/10/2013.

attached is a example file, thanks in advance,

1 Solution

Accepted Solutions
Not applicable
Author

Hi Sreevidya

have a look at this

best regards

chris

View solution in original post

2 Replies
swuehl
MVP
MVP

You can use something like this to get the next date according your selection:

='Next date: ' & date( min({<Date = {">$(=date(max(Date)))"}>}Date))

So you can create a variable vNext

=date( min({<Date = {">$(=date(max(Date)))"}>}Date))

and then use this variable in your next date aggregations, like

=sum({<Date = {'$(vNext)'}>} Value)

edit: added sample application

Not applicable
Author

Hi Sreevidya

have a look at this

best regards

chris