Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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"
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |