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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
adley51788
Contributor III
Contributor III

Selecting Max date and Max value to display Dimension

Hello,

I am trying to display a dimension based on the max of two values.  For example:

Engagement :: Date :: Level

A ,10/1/2015,3

A ,10/1/2015,2

A, 09/29/2015,3

B,10/2/2015,3

B ,10/2/2015,2

B, 09/29/2015,3

C ,10/2/2015,3

C ,10/2/2015,2

C, 09/29/2015,3

I would expect to see --

A,10/1/2015,3

B,10/2/2015,3

C,10/2/2015,3

Thank you!

1 Solution

Accepted Solutions
sunny_talwar

Try this:

Dimension

Engagement

Expression

1) =Date(Max(Date))

2) =FirstSortedValue(Level, -(Date*10000 + Level))


Capture.PNG

View solution in original post

3 Replies
sunny_talwar

Try this:

Dimension

Engagement

Expression

1) =Date(Max(Date))

2) =FirstSortedValue(Level, -(Date*10000 + Level))


Capture.PNG

adley51788
Contributor III
Contributor III
Author

Thank you for your response.

I am getting a null value for the level field in my data set. Would it be possible to display the max level even if the date is null?

Thanks!

sunny_talwar

Would you be able to share a sample for that scenario with the expected output?