HI ALL
Ihave one issue as shown below
I need to find the lost customer for 2 month ago ( customers didn't buy from us during 2 month ago )
can any one help me on that
Abbreviations:
invd= invoice date
name = customer name
this is dax code :
thanks
@Ibrahimxix , Customer buying from use for last 2 months
2 Months =
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _min = date(Year(_max), month(_max) -2, Day(_max))+1
BLANK())
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))
or
2 Months =
var _max = eomonth(if(isfiltered('Date'),MAX( 'Date'[Date]) , today()),0)
var _min = eomonth(_max,-2)+1 ,
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))
Then customer did not buy
Countx(Values(Customer[Customer]), if(isblank([2 Months]) , [Customer], Blank()) )
For more information refer my blog na video
Customer Retention Part 1:
https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-1-Month-on-Month-Retention/b...
Customer Retention Part 2: Period over Period Retention :https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-2-Period-over-Period-Retenti...
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY
i did what you told me but this result came to me