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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
Likhitha
Helper IV
Helper IV

New Distinct Count for the Next Day

Hello All,

I'm having 3 distinct customers on day-1 and for Day-2 a new customer is added .How to get that New Customer Count??

Likhitha_0-1624353593245.png

In the Image,ABC are new distinct  Customers for Day-1 so distinctcount is 3,For Day-2 D is the new customer and distinctcount should be 1.How to do that??

1 ACCEPTED SOLUTION
v-angzheng-msft
Community Support
Community Support

Hi, @Likhitha 

Try to create 2 measures like below:

_New =
VAR _minDate =
    CALCULATE ( MIN ( [Date] ), ALLEXCEPT ( 'Table', 'Table'[Name] ) )
VAR _if =
    IF ( _minDate = MIN ( [Date] ), 1, 0 )
RETURN
    _if
_Count =
VAR _Count =
    SUMMARIZE ( 'Table', [Date], [Name], "_New", [_New] )
RETURN
    SUMX ( _Count, [_New] )

Sample:

vangzhengmsft_0-1624516214415.png

Please refer to the attachment below for details

 

Hope this helps.

 

Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-angzheng-msft
Community Support
Community Support

Hi, @Likhitha 

Try to create 2 measures like below:

_New =
VAR _minDate =
    CALCULATE ( MIN ( [Date] ), ALLEXCEPT ( 'Table', 'Table'[Name] ) )
VAR _if =
    IF ( _minDate = MIN ( [Date] ), 1, 0 )
RETURN
    _if
_Count =
VAR _Count =
    SUMMARIZE ( 'Table', [Date], [Name], "_New", [_New] )
RETURN
    SUMX ( _Count, [_New] )

Sample:

vangzhengmsft_0-1624516214415.png

Please refer to the attachment below for details

 

Hope this helps.

 

Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Likhitha , Create measures like these with help from date table

 


This Day = CALCULATE(countrows(Table), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))
Last Day = CALCULATE(countrows(Table), FILTER(ALL('Date'),'Date'[Date]<=max('Date'[Date])-1))


new customer = countx(values(Table[name]), if(isblank([Last Day]) && not(isblank([This Day])), [name], blank()))

 

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series

 

 

Appreciate your Kudos.

 

 

 

Customer Retention Part 1:
https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-1-Month-on-Month-Retention/b...

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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