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

Show customers with 0 sales

Hi guys,

 

My data has daily sales by customer. However, if I selected a date, customers with no sales on that day would not show up. Is it possible to show customers with 0 sales as well?

 

I created a simple example for this:

load * Inline
[
Customer, Sales, Date
A, 200, 01/01/2019
B, 300, 01/01/2019
A, 400, 01/02/2019
C, 700, 01/03/2019
];

 

If I selected 01/01/2019, only A & B would show up:

Capture.PNG

How can I let C show as well, with 0?

 

Thanks for help!

1 Solution

Accepted Solutions
skamath1
Creator III
Creator III

Replace your expression with 

RangeSum(Sum(Sales), Sum( {<Date= >} 0))

 

View solution in original post

2 Replies
skamath1
Creator III
Creator III

Replace your expression with 

RangeSum(Sum(Sales), Sum( {<Date= >} 0))

 

bhargav_bhat
Creator II
Creator II

Hi Wanyunyang,

Add this is script and it will work

Sales:

load * Inline
[
Customer, Sales, Date
A, 200, 01/01/2019
B, 300, 01/01/2019
A, 400, 01/02/2019
C, 700, 01/03/2019
];

noconcatenate

SalesModified:

Load 
distinct  Customer 

Resident Sales;

join(SalesModified)

Load

distinct Date

Resident Sales;

left join(SalesModified)

LOAD

Customer,

Sales,

Date

Resident Sales;

 

Drop table Sales;

 

Regards,

Bhargav