The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
so for example I have this table
I want to divide 115 by 1005, 20 by 1005, then 59 by 1215 etc. So I created a calculated measure,
distcount of customers 1st month =
VAR CountCustomers =
DISTINCTCOUNT( Table[users] ) RETURN CALCULATE(DISTINCTCOUNT(Table[users]),
FILTER(Table, Table[sale month]=Table[reg month]))
Then I created another calculated measure,
retention = DISTINCTCOUNT(Table[users])/[distcount of customers 1st month]*100
but it wouldnt get me a result I want:
Any ideas how to solve that?
Solved! Go to Solution.
Give this a shot
distcount of customers 1st month = VAR myvalue = SELECTEDVALUE ( Table[reg month] ) RETURN CALCULATE ( DISTINCTCOUNT ( Table[users] ), FILTER ( ALL ( Table[sale month] ), Table[sale month] = myvalue ) )
Give this a shot
distcount of customers 1st month = VAR myvalue = SELECTEDVALUE ( Table[reg month] ) RETURN CALCULATE ( DISTINCTCOUNT ( Table[users] ), FILTER ( ALL ( Table[sale month] ), Table[sale month] = myvalue ) )
That worked amazingly! Thnx a lot
User | Count |
---|---|
77 | |
75 | |
36 | |
31 | |
28 |
User | Count |
---|---|
106 | |
98 | |
55 | |
49 | |
48 |