Skip to main content
Announcements
Get Ready. A New Qlik Learning Experience is Coming February 17! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display the items of the highest date per ID1/ID2-Combination in a straight table

Hi,

i have a problem with the following data:

Table:

load * inline

[

ID1,ID2,Item,Date

1,AB,Apple,11.03.2016

1,AB,Cherry,11.03.2016

1,AB,Apple,12.03.2016

1,AB,Banana,12.03.2016

2,CD,Apple,09.03.2016

2,CD,Apple,10.03.2016

2,CD,Banana,10.03.2016

];

I want to display the items of the highest date per ID1/ID2-Combination in a straight table like this:

table.JPG

How do I do this?

4 Replies
sunny_talwar

May be this?

Capture.PNG

Dimension:

ID1

ID2

Item

Expression:

=If(Max(Date) = Max(TOTAL <ID1, ID2>Date), Date(Max(Date)))

Not applicable
Author

Thx for your reply!

I let you know if it worked with me.

Not applicable
Author

It worked!

Thx a lot!

Not applicable
Author

It worked! Thx a lot!