Forum Discussion

ssspk's avatar
ssspk
Helper III
2 years ago
Solved

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], "UserCo...
  • Anonymous's avatar
    Anonymous
    2 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
        _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.