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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
maxim1500
Partner - Creator
Partner - Creator

Set analysis - Inner aggregation not considering dimension?

Hi,

I am try to build a table with the following metric by User.

COUNT({<[Security ID] = {"=Count({<$(=vSelectedDate)>} DISTINCT [Account ID]) <= 3"}>} DISTINCT [Security ID])

In a KPI, it gives the correct answer. But if I put it in a table, it seems like the securities are grouped by user, but not the accounts.

In other words, "Count({<$(=vSelectedDate)>} DISTINCT [Account ID]) <= 3" does not consider the user on the table row, but all the accounts for all users.


Is there a way to avoid this?


Thanks!

1 Reply
sunny_talwar

Create a new key in your script

AutoNumber([Security ID]&User) as Key

and then try this

COUNT({<Key = {"=Count({<$(=vSelectedDate)>} DISTINCT [Account ID]) <= 3"}>} DISTINCT [Security ID])