Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
table is like given below
APP NAME USER ID
APP_A P1001
APP_A P1002
APP_A P1003
APP_A P1004
APP_B P1001
APP_B P1002
APP_B P1003
APP_C P1001
APP_C P1002
APP_C P1004
APP_D P1001
APP_D P1002
APP_D P1004
APP_D P1005
need result like, common users from all applications
Sample result
APP NAME USER ID
APP_A P1001
APP_A P1002
APP_B P1001
APP_B P1002
APP_C P1001
APP_C P1002
APP_D P1001
APP_D P1002
Solved! Go to Solution.
Yes, this worked. Thanks a ton!!
Hi @KP_PB ,
You could create a column as below and use it as filter on visual:-
Common_user =
VAR _dist_app =
DISTINCTCOUNT ( 'Table'[APP N] )
VAR _com_user =
COUNTROWS ( FILTER ( 'Table', 'Table'[USER ] = EARLIER ( 'Table'[USER ] ) ) )
RETURN
IF ( _com_user = _dist_app, "Y", "N" )
Output:-
File for reference:-
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi Samarth,
Please, Can you explain how this statement evaluates. Thanks.
FILTER ( 'Table', 'Table'[USER ] = EARLIER ( 'Table'[USER ] )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.