Forum Discussion
How to get the Recurring/Repeat Users based on the table data?
Hello Team,
I would like to get the Recurring/Repeat Users from table 'data'. Table has a column called 'servertime' , 'user'.
_UserOccurrences = SUMMARIZE( data, data[user], "UserCount", COUNTROWS(data) )
Identify Recurring Users:
_RecurringUsers = FILTER( _UserOccurrences, [UserCount] > 1 )
Also the other approach,
Bo th the methods retun error.
How to resolve the error?
Thanks nad Refards,
Siva
- 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.
1 Reply
- AnonymousNot applicable
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.