Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can i get a single row

Please,

How can i get a single row in a list of sellers, I want show the best seller.

Example:

NAME - SALES

Rodrigo - 500

Bruno - 300

Lucas - 7000

I wanna show only Lucas in a Text Object.

Somebody can help me please??

2 Replies
Anonymous
Not applicable
Author

It is easy to implement using FirstSortedValue() function:

=FirstSortedValue(NAME, -SALES)

Regards,
Michael

manideep78
Partner - Specialist
Partner - Specialist

Try this, It must work.

=Only({<SALES={"$(=Max(SALES))"}>}NAME)