Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe 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.
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??
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??
Solved! Go to Solution.
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:
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.
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:
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.
@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...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
78 | |
52 | |
39 | |
35 |
User | Count |
---|---|
94 | |
79 | |
51 | |
47 | |
47 |