Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewaf
Creator
Creator

Sales Amount - Set Analysis

Hi Guys,

i'm building an easy report by Sales Rep.

Basically each sales transaction is associated to a sales Rep.

In the report i would like to have this structure as shown below: Sales Rep -> Customer

As expression i would like to see the sales amount of that specific rep, but also the total sales amount (regardless which was the sales-rap) for that specific customer

In the example below in the Total Customer sales amount i expect to see on each row 600 which is the total sales by customer.

sales rep.PNG

I try to set this formula but it doesnt work --> =Sum({<SalesRep=,}>} Amount)

Can anyone please help?

Thank you!!

1 Solution

Accepted Solutions
sunny_talwar

I think you need What does the TOTAL qualifier do? instead of set analysis

=Sum(TOTAL <Customer> Amount)


Capture.PNG

View solution in original post

8 Replies
sunny_talwar

I think you need What does the TOTAL qualifier do? instead of set analysis

=Sum(TOTAL <Customer> Amount)


Capture.PNG

qlikviewaf
Creator
Creator
Author

Hi Sunny,

this is working -  but if a specific Sales Rep is selected, this will not work anymore.

Which solution can be used in this case?

devarasu07
Master II
Master II

Hi,

just ignore this sales rep dimension form your expression

like this

=Sum(TOTAL <Customer> {<SalesRep=>}Amount)

Capture.JPG

qlikviewaf
Creator
Creator
Author

Hi Devarasu,

I selected NickRep, but...i would like not to have the TonyRep row then. but just customer linked to NickRep.

Do you think this is something possible?

VALUE.png

devarasu07
Master II
Master II

Hi,

Yes,

=Sum(TOTAL {<SalesRep=>}  Amount)

Capture.JPG

qlikviewaf
Creator
Creator
Author

Is not working, is summing all sales regardless of customer

sales rep 2.PNG

devarasu07
Master II
Master II

Hi,

Can you try like this,

SalesData:

LOAD * INLINE [

InvoiceDate,Customer, SalesRep, Amount

01/01/2017, ACOUSTIC LTD, NickRep, 100

05/01/2017, ACOUSTIC LTD, TonyRep, 500

06/01/2017,ARMONIC SDC, Giorione, 230

];

[Total Sales]:

load Customer,sum(Amount) as [Total Sales] Resident SalesData group by Customer;

Capture.JPG

sunny_talwar

Like devarasu07‌ mentioned, you needed this

=Sum(TOTAL <Customer> {<SalesRep=>}Amount)

Capture.PNG