Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello all,
My query is related to this previous post:
Solved: Calculated column that tells me whether someone ha... - Microsoft Fabric Community
My organisation also looks at 'Returning clients', which are existing clients that have re-engaged with us after 6 months or more of no contact.
How could I modify the DAX formula provided in the solution in the above post to return True for anyone who is a 'Returning Client'?
Many thanks in advance!
Solved! Go to Solution.
@MadalenaBicho you can try the below.
ReturningClient =
IF(
CALCULATE(
COUNTROWS('YourTableName'),
FILTER(
'YourTableName',
'YourTableName'[ClientID] = EARLIER('YourTableName'[ClientID])
)
) > 0,
"True",
"False"
)
@MadalenaBicho you can try the below.
ReturningClient =
IF(
CALCULATE(
COUNTROWS('YourTableName'),
FILTER(
'YourTableName',
'YourTableName'[ClientID] = EARLIER('YourTableName'[ClientID])
)
) > 0,
"True",
"False"
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |