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: 
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)