Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Aggregating based on a particular dimension in a straight table

Hi All,

I have a straight table with dimensions like state, city, distributor and retailers are their and then some expressions are there. Now my requirement is to show one of the expressions based on distributors i.e. the aggregation should be done on the distrbutors and not on the retailers. For every retailer it should show the same value i.e. the total for that distributor to which the retailer belongs to.

1 Solution

Accepted Solutions
maxgro
MVP
MVP

to evaluate the expression at the distributor level

sum(  total <distributor>  expression)

sum( total <field1,field2> exp)

sum(total exp)

View solution in original post

2 Replies
maxgro
MVP
MVP

to evaluate the expression at the distributor level

sum(  total <distributor>  expression)

sum( total <field1,field2> exp)

sum(total exp)

Not applicable
Author

Thanks.