Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hananb
New Member

New costumers per day

 

Hi,

 

I tried to write a measure to find how many new customer we got in each day.

 

I created a mew table

 

First = SUMMARIZE(sales,Sales[Customer ID],"First Purchase",min(Sales[Purchase Date]))

 

I connected the "First Purchase" column, to the the date column in the calendar table, and with a measure:

 

Count New Client Alt. = COUNTROWS(First)

 

it's work.

 

But if I want to put all of them together:

 

Count New Client  = COUNTROWS(SUMMARIZE(sales,Sales[Customer ID],"First Purchase",min(Sales[Purchase Date])))

 

I got  a wrong answer, and I don't understand why (maybe because the lack of connection?).

 

Can someone explain it, and what is the right measure?

 

Thank you

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

@hananb

 

Have a look at the "new customers" patterns discussed on these pages:

https://www.sqlbi.com/articles/computing-new-customers-in-dax/

https://www.daxpatterns.com/new-and-returning-customers/

 

For example, I took the pattern discussed in the first link, and changed the column names to match your scenario (assuming you have a 'Calendar'[Date] column):

 

Count New Client =
COUNTROWS (
    FILTER (
        CALCULATETABLE (
            ADDCOLUMNS (
                VALUES ( Sales[Customer ID] ),
                "First Purchase", CALCULATE ( MIN ( Sales[Purchase Date] ) )
            ),
            ALL ( 'Calendar' )
        ),
        CONTAINS ( VALUES ( 'Calendar'[Date] ), 'Calendar'[Date], [First Purchase] )
    )
)

The only relationship required is between Sales[Purchase Date] and 'Calendar'[Date].

 

Does the above code or something from the above links work?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

2 REPLIES 2
OwenAuger
Super User
Super User

@hananb

 

Have a look at the "new customers" patterns discussed on these pages:

https://www.sqlbi.com/articles/computing-new-customers-in-dax/

https://www.daxpatterns.com/new-and-returning-customers/

 

For example, I took the pattern discussed in the first link, and changed the column names to match your scenario (assuming you have a 'Calendar'[Date] column):

 

Count New Client =
COUNTROWS (
    FILTER (
        CALCULATETABLE (
            ADDCOLUMNS (
                VALUES ( Sales[Customer ID] ),
                "First Purchase", CALCULATE ( MIN ( Sales[Purchase Date] ) )
            ),
            ALL ( 'Calendar' )
        ),
        CONTAINS ( VALUES ( 'Calendar'[Date] ), 'Calendar'[Date], [First Purchase] )
    )
)

The only relationship required is between Sales[Purchase Date] and 'Calendar'[Date].

 

Does the above code or something from the above links work?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Thank you,

 

it's work.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.