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: 
Touix
Contributor III
Contributor III

I want to have the sum by customer for a product without customer in dimension

yone,

I ask the Qlikview expert to help me about a simple problematic I have.

I have this data  and i want to have the sum of the data per article but i just want to show the article.

Facture Number, Article, customer_id, amount

F1,Pen, 10,10€

F2,Pen,10,10€

F3,Pen,12,12€

F4,Pencil,10,13€

F4,Pencil,10,13€

F5,Pencil,11,14€

 

result :

Pen,20€

Pen,12€

Pencil, 26€

Pencil, 14€

I cannot see how to do this 😞 .

 

thank you for your help.

 

Regards,

 

1 Solution

Accepted Solutions
Taoufiq_Zarra

@Touix  if you are in qliksense no need to hide dimension:

you can add table and

in dimension:

Article

in an other dimension use :

=aggr( sum(amount),customer_id,Article)

 

output:

Taoufiq_Zarra_0-1628256098914.png

 

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉

View solution in original post

4 Replies
Taoufiq_Zarra

you can use =sum(aggr( sum(amount),customer_id,Article))

as measure

and Article, customer_id as dimension

and hide customer_id dimension

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Touix
Contributor III
Contributor III
Author

Hello taoufik,

 

Can you tell me how to hide a dimension please ?

Taoufiq_Zarra

@Touix  if you are in qliksense no need to hide dimension:

you can add table and

in dimension:

Article

in an other dimension use :

=aggr( sum(amount),customer_id,Article)

 

output:

Taoufiq_Zarra_0-1628256098914.png

 

 

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Touix
Contributor III
Contributor III
Author

Thank you very much Taoufik.

You helped me a lot.