Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dimention and Grouping

HI All

                         for the below expression

=if(sum( distinct EmployeeBucket )>36 and sum(distinct EmployeeBucket )<=70,Count( DISTINCT [Employee Number]))

I am using Employee band as expression but i want the sum(distinct employeebucket) to be calculated for each and every employee on that group separately

Please help

1 Reply
marcus_sommer

Maybe a calculated dimension with clusters about your EmployeeBucket is helpful for you:

Class(aggr(sum(distinct EmployeeBucket), Dimension1, Dimension2), $(ClusterSize), 'x', 0)

- Marcus