Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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??

Labels (1)
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)