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

How do aggregate by one dimension, ignoring current selection

Hi all,

I have a chart with two dimensions - Device platform and age. And in one of the measures, I want to display total user count for each age dimension for the month, no matter what my device platform selection is.

So my expression is : COUNT(    {1<month_id = P(${month_id})>}   TOTAL <age>   user_id).

The problem is that this expression still respect device platform selection.

Any suggestions? 

Thanks

5 Replies
swuehl
Champion III
Champion III

What do you want to achieve with

COUNT(    {1<month_id = P(${month_id})>}   TOTAL <age>   user_id)

Do you maybe need something like

COUNT(    {1<month_id = P( month_id )>}   TOTAL <age>   user_id)

Not applicable
Author

Hi

Thanks for the reply.

This is used to calculate a denominator in my metrics. Basically I want this number to be the number of users for every age, ignoring my selection (keep the month_id selection though)

swuehl
Champion III
Champion III

If device platform selection alters the possible values of month_id, this will also alter your expression result.

Not applicable
Author

in the data I imported, the platform selection won't alter month_id value.

I tried to do SUM(AGGR()). But the i don't know if there is anyway to ignore selection in AGGR(). The set Analysis before AGGR() won't work.

swuehl
Champion III
Champion III

This may explain set analysis / advanced aggregation.

Set Analysis in the Aggr function

Could you post a small sample application that demonstrates your issue?