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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Return String based on Highest Count

Hello,

In a text field I want to display the name of a value with the highest count.

So far I have this

=MaxString(aggr(Count({1<[Billable_Status] = {Billable}>}Practice)Practice))

This returns back the highest count of billable employees in a practice, but I want it to display the name of the practice not the count.

Thanks.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Try like:

=FirstSortedValue( YourNamefield, - aggr(Count({1<[Billable_Status] = {'Billable'}>}Practice), Practice) )

View solution in original post

2 Replies
tresB
Champion III
Champion III

Try like:

=FirstSortedValue( YourNamefield, - aggr(Count({1<[Billable_Status] = {'Billable'}>}Practice), Practice) )

Not applicable
Author

This works!

Thanks a lot for the help