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: 
SonOfJeffGoldblum
Contributor III
Contributor III

count set analysis

I have a table that shows role, name, and max count of times among all persons who has filled the role the most (ignore the duplicate "Speaker - ?" instances here).

RoleName#
CaptainGeorge Costanza3
TreasurerKosmo Kramer2
MinutesElaine Benes3
SpeakerBob Sakamano1
Speaker - ?Kosmo Kramer1
Speaker - ?Tim Watley1
EvaluatorTim Watley2
TimerBob Cobb4
VisitorEstelle Costanza18

 

How can I show if a role has a tie for # times filled? The resulting table would show the two extra Speaker Instances here.

=count({<Role-={"Analyst"}>}Name)

Limitation: Role: Fixed Number = 7

Limitation: Name: Fixed Number = 1

Everything not saved will be lost
— Nintendo Quit screen message
Labels (3)
10 Replies
SonOfJeffGoldblum
Contributor III
Contributor III
Author

Solution:

Using Ranking

=if(rank(count(Role),1,0)=1,count({<Role-={"Attendee"},Name={"=count(Name)"}>}Role))

Everything not saved will be lost
— Nintendo Quit screen message