The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi there,
I would like to to calculate the total of repeats/returning customers for a certian period.
So my first measure for the below "Distinct email Count", I use = CALCULATE(DISTINCTCOUNT(Table[Column]
Then a simple = IF([Distinct email Count] > 1, "Returning", "Not")
How will I be able to get the total of value for Returning and for Not?
I know there are a couple of articles on New, Lost Customers but just looking for a simplified version of identifying returning customers for a sanity check.
Any ideas?
Kind regards
Solved! Go to Solution.
@amitchandak - thanks for your reply. I might not have been clear with question, however, I managed to get it working with
Hi @Axiomite ,
If the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.
Looking forward to your feedback.😊
Best Regards,
Henry
Returning = countx( filter(summarize(Table, Table[Year], Table[Month], Table[email], "_1", CALCULATE(DISTINCTCOUNT(Table[Column] )) ) , [_1] >1) ,[email] )
not = countx( filter(summarize(Table, Table[Year], Table[Month], Table[email], "_1", CALCULATE(DISTINCTCOUNT(Table[Column] )) ) , [_1] <=1 ) ,[email] )
@amitchandak - thanks for your reply. I might not have been clear with question, however, I managed to get it working with
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |