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: 
satishkurra
Specialist II
Specialist II

Ignore Dimension Selections

Hi All

For the below expression, how can we ignore the selections on dimension, SalesPerson?

Fractile( total <[Country]> Aggr( Sum(Sales), [Country], [SalesPerson] ) ,0.25 )

Labels (1)
1 Solution

Accepted Solutions
MatheusC
Specialist II
Specialist II

maybe like this:

Fractile({<[SalesPerson] =>} total <[Country]> Aggr( Sum({<[SalesPerson]= >} Sales), [Country], [SalesPerson] ) ,0.25 )



- Regards, Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

2 Replies
MatheusC
Specialist II
Specialist II

maybe like this:

Fractile({<[SalesPerson] =>} total <[Country]> Aggr( Sum({<[SalesPerson]= >} Sales), [Country], [SalesPerson] ) ,0.25 )



- Regards, Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
satishkurra
Specialist II
Specialist II
Author

Well the below tweak worked for me.

 

if(Sum(Sales) = 0, 0,
Fractile( {<SalesPerson=>}total <[Country]> Aggr( Sum({<SalesPerson=>}Sales), [Country],SalesPerson ) ,0.25 )
)