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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
abhijith28
Creator II
Creator II

Finding the sum

Hi,

Please someone help me with this:

Product,Sales

A,50

B,40

B,65

A,35

C,70

 

I need the output in text box as B:105

because the max value of the total sales of that product.

2 Solutions

Accepted Solutions
pradosh_thakur
Master II
Master II

This may be

=only({<Product={"=Sum(Sales)=Max(total AGGR(sum(Sales),Product))"}>}Product ) & ':' & Max(AGGR(sum(Sales),Product))
Learning never stops.

View solution in original post

arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi,

Please use below Expression to get that:

FirstSortedValue(ID,-aggr(sum(Value),ID))&':'&MAx(Aggr(Sum(Value),ID))

Thanks & regards,
Arvind Patil

View solution in original post

4 Replies
pradosh_thakur
Master II
Master II

This may be

=only({<Product={"=Sum(Sales)=Max(total AGGR(sum(Sales),Product))"}>}Product ) & ':' & Max(AGGR(sum(Sales),Product))
Learning never stops.
arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi,

Please use below Expression to get that:

FirstSortedValue(ID,-aggr(sum(Value),ID))&':'&MAx(Aggr(Sum(Value),ID))

Thanks & regards,
Arvind Patil
arvind_patil
Partner - Specialist III
Partner - Specialist III

Please find the attached table.

Data:
Load * inline [
ID,Value
A,50

B,40

B,65

A,35

C,70 ];
Exit Script;

Thanks & Regards,

Arvind Patil

Sue_Macaluso
Community Manager
Community Manager

Is this for QlikView or Sense as I would like to move into the correct product forum
Did you find a solution to your question? Mark the solution as accepted : and if you found it useful, press the like button!