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: 
eromiyasimon
Creator II
Creator II

Get Max date by second column

Hi All,

Kindly help me to get the max date value using doc name

User Name

Doc_name

Last used

A

Apple

28/11/2016

A

Apple

13/02/2017

A

Apple

14/01/2017

A

Ball

02/02/2017

B

Apple

26/01/2017

B

Apple

10/02/2017

B

Apple

21/02/2017

B

Ball

05/12/2016

B

Ball

08/02/2017

C

Apple

06/12/2016

C

Apple

16/01/2017

C

Apple

01/02/2017

C

Ball

06/02/2017

C

Ball

07/11/2016

C

Ball

03/02/2017

C

Ball

14/11/2016

C

Ball

18/11/2016

Thank you

7 Replies
its_anandrjs
Champion III
Champion III

Try with

Tab1:

Load

[User Name],

Doc_name,

[Last used]

From Location

Left Join(Tab1)

Load

Doc_name,

Date(MAX([Last used])) as MasDate

Resident Tab1

Group By Doc_name;

eromiyasimon
Creator II
Creator II
Author

Hi, thank you for the reply can you please help me to do in expression

its_anandrjs
Champion III
Champion III

Hope you looking for this

Tab1:

LOAD * Inline

[

User Name, Doc_name, Last used

A, Apple, 28/11/2016

A,  Apple, 13/02/2017

A, Apple, 14/01/2017

A, Ball, 02/02/2017

B, Apple, 26/01/2017

B, Apple, 10/02/2017

B, Apple, 21/02/2017

B, Ball, 05/12/2016

B, Ball, 08/02/2017

C, Apple, 06/12/2016

C, Apple, 16/01/2017

C, Apple, 01/02/2017

C, Ball, 06/02/2017

C, Ball, 07/11/2016

C, Ball, 03/02/2017

C, Ball, 14/11/2016

C, Ball, 18/11/2016

];

Left Join(Tab1)

LOAD

Doc_name,

Date(Max([Last used])) as MaxDate

Resident Tab1

Group By Doc_name

Order By Doc_name;

Find the attached also

eromiyasimon
Creator II
Creator II
Author

no i want to use inside a chart as expression

its_anandrjs
Champion III
Champion III

Write Expression like

=Aggr( Date(Max([Last used])),Doc_name)

See attached

anders_thorngaa
Contributor III
Contributor III

I'm not sure what result you are looking for.

I suppose you load User name, Doc_name and Last used as inline table. You can then create a table with Doc_name as dimension and expression = Max([Last used])

MaxDate.PNG

effinty2112
Master
Master

Hi Eromiya,

Maybe:

Doc_name Date(Max([Last used]))
Apple21/02/2017
Ball08/02/2017

cheers

Andrew