Forum Discussion
How to get the Recurring/Repeat Users based on the table data?
- Anonymous2 years ago
Hi ssspk ,
Depending on the information you provided, you are walking on the right path. You can solve your problem by following these steps:
Sample data:1.Add a new TABLE.
Table = VAR _UserOccurrences = SUMMARIZE ( data, data[user], "UserCount", COUNTROWS ( data ) ) VAR _RecurringUsers = FILTER ( _UserOccurrences, [UserCount] > 1 ) RETURN _RecurringUsersFinal output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ssspk ,
Depending on the information you provided, you are walking on the right path. You can solve your problem by following these steps:
Sample data:
1.Add a new TABLE.
Table =
VAR _UserOccurrences =
SUMMARIZE ( data, data[user], "UserCount", COUNTROWS ( data ) )
VAR _RecurringUsers =
FILTER ( _UserOccurrences, [UserCount] > 1 )
RETURN
_RecurringUsers
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.