Forum Discussion
Measure Repeat Customer by Date
- 4 years ago
Hi Index_Match
Try this measure [without Date Table]:
Repeat Customers = VAR _A = ADDCOLUMNS ( Customer, "CY", CALCULATE ( DISTINCTCOUNT ( Customer[Customer] ), FILTER ( ALL ( customer ), YEAR ( Customer[Year] ) = YEAR ( EARLIER ( Customer[Year] ) ) - 1 && Customer[Customer] = EARLIER ( Customer[Customer] ) ) ) + 0 ) RETURN SUMX ( _A, [CY] )output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Index_Match solution attached, and core measure is this:
Repeat Customers =
VAR __thisYearCustomer = VALUES ( Customer[Customer] )
VAR __lastYearCustomer = CALCULATETABLE ( VALUES ( Customer[Customer] ), PREVIOUSYEAR ('Calendar'[Date] ) )
RETURN
COUNTROWS ( INTERSECT ( __thisYearCustomer, __lastYearCustomer ) ) + 0
✨ Follow us on LinkedIn and to our YouTube channel
Learn about conditional formatting at Microsoft Reactor
My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.