Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi there, I have an issue I am trying to resolve in my calculated column and am hoping someone can help?
Currently I am using a calculated DAX column to identify if someone is a new client based on if they have had a service in the last 6 months or not. It is working fine, however if someone has a new service, but then has a subsequent one afterwards then they are appearing twice as both new and existing.
What I would like to do is have this person in this scenario display as an existing client as they have had multiple services in the last 6 months. Example of what my table would currently look like below:
| Person ID | New Client Flag |
| 1 | Y |
| 2 | N |
| 2 | Y |
| 3 | N |
| 4 | Y |
This is the DAX I am using in my calculated column:
@Anonymous , refer the new customer logic
Period over Period Retention :https://community.powerbi.com/t5/Community-Blog/Customer-Retention-Part-2-Period-over-Period-Retention/ba-p/1377458
CALCULATE(COUNTROWS('Appended Event Data'),
Hi there, thanks for your reply.
I've given this a go, created 2 measures and a calculated column which doesn't seem to be working?
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 46 | |
| 44 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 73 | |
| 72 | |
| 34 | |
| 33 | |
| 31 |