Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
josecanalla
Creator
Creator

Count number of items with specific measure value

Hello, I have this data in Qlik Sense

NameCOUNT(value)
Jeff4
Joseph4
Juan3
Orlando2
......

And I want to get what number of items have 4 count(value), 3, 2, ....etc.


So for the example is:

COUNT(value)Number of items
42
31
2....

How can I do that? Thanks!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Like using a dimension

=Aggr( Count(value), Name)

with an expression

=Count(DISTINCT Name)

View solution in original post

2 Replies
swuehl
MVP
MVP

Like using a dimension

=Aggr( Count(value), Name)

with an expression

=Count(DISTINCT Name)

sunny_talwar

May be like this

Dimension

Aggr(Count(value), Name)

Expression

Count(DISTINCT Name)