Forum Discussion
manar_alamri
1 year agoHelper I
Customers Retention by quarters
Hello everyone , I want to do two things in power bi : first , calculate the customer retention by quarters , years and centers( Customers who returned from the previous quarter to the same cente...
lucadelicio
1 year agoImpactful Individual
Hi manar_alamri
try this measure:
New Clients =
CALCULATE(
DISTINCTCOUNT(Table1[guest code]),
FILTER(
Table1,
Table1[date] =
CALCULATE(MIN(Table1[date]),
ALLEXCEPT(Table1, Table1[guest code])
)
)
)
put in a table with the period column that you need.
put in a table with the period column that you need.
- manar_alamri1 year agoHelper I
Thank you lucadelicio the new client measure is work !
can you help me on Customers retention also ?