Forum Discussion
OpenMike13
4 years agoFrequent Visitor
Need help with Member Retention based off 2 columns
Hello All Im having issues finding member rention based off the data i was given. Here is a link to some sample data. I have two date columns to go off of a countdate column- which is the ...
- Anonymous4 years ago
Hi OpenMike13 ,
Please try this measure.
Member retention Rate = VAR _mindate = CALCULATE ( MIN ( 'Table'[CountDate] ), ALL ( 'Table'[CountDate] ) ) VAR _count1 = COUNTROWS ( 'Table' ) VAR _count2 = CALCULATE ( DISTINCTCOUNT ( 'Table'[contactid] ), FILTER ( ALL ( 'Table' ), 'Table'[CountDate] >= _mindate && 'Table'[CountDate] <= MIN ( 'Table'[CountDate] ) ) ) VAR _rate = DIVIDE(_count1,_count2) RETURN _rateAttached PBIX file for reference.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
lbendlin
Super User
4 years agowhat is your expected result based on the sample data you provided?