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

Find the amount of the last transaction per client

Hi all

I have the following basic info: Client (multiple), Transaction Date (multiple per client, and multiple per day, but only max one per client per day), and Amount. I want a table showing me a list of clients with the last transaction date and amount.

Please can you help.

Thanks.

Joao

1 Solution

Accepted Solutions
tresesco
MVP
MVP

PFA

Amount: FirstSortedValue(Aggr( Sum(Amount),Client,TransDate), -TransDate)

Date: Date(Max(TransDate))

View solution in original post

2 Replies
tresesco
MVP
MVP

PFA

Amount: FirstSortedValue(Aggr( Sum(Amount),Client,TransDate), -TransDate)

Date: Date(Max(TransDate))

Anonymous
Not applicable
Author

Genius!

Thank you so much.

Joao