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

New customers in month

Using a typical invoices table, I'm trying to calculate new customers in month in a chart with one dimension (Year-Month) and one expression (No of new customers)

In the expression I'm trying to compare min(Date) with min(ALL <CustomerID> Date), but I fail. The closest formula I've got is:

= count( DISTINCT

           if( aggr( min(ALL <CustomerID> Date), CustomerID) = aggr( min( Date), CustomerID)

              , CustomerID

              )

         )

I'm getting strange results, but I feel I'm close...

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hei

attach i an example

try it

View solution in original post

4 Replies
lironbaram
Partner - Master III
Partner - Master III

hei

attach i an example

try it

Not applicable
Author

Thanks, it works except for the first month where New Customers should be equal to ALL Customers active in that month, but your formula shows a lot more. But I can live with it...

lironbaram
Partner - Master III
Partner - Master III

yes and it shows all 7 cutomers who bought in the first month

Not applicable
Author

Maybe I must do some tweaking for my particular case, but thank you.