Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have two tables:
account_users and accounts_user_tags
connected with account_users.id = accounts_user_tags.user_id
Need a measure to calculate the extra id's present in account_users table but are not present in accounts_user_tags
I tried something like:
user_count = CALCULATE(
COUNT(
'public accounts_user'[id]
);
FILTER('public accounts_user_tags';'public accounts_user_tags'[user_id])
)
but, I guess it's not correct.
Anyone could guide me here.
Solved! Go to Solution.
Hi @Anonymous,
If I understand you correctly, the formula below should work in your scenario?
user_count = COUNTROWS ( FILTER ( 'public accounts_user'; CONTAINS ( 'public accounts_user_tags'; 'public accounts_user_tags'[user_id]; 'public accounts_user'[id] ) = FALSE () ) )
Regards
Hi @Anonymous,
If I understand you correctly, the formula below should work in your scenario?
user_count = COUNTROWS ( FILTER ( 'public accounts_user'; CONTAINS ( 'public accounts_user_tags'; 'public accounts_user_tags'[user_id]; 'public accounts_user'[id] ) = FALSE () ) )
Regards
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
77 | |
73 | |
58 | |
35 | |
31 |
User | Count |
---|---|
99 | |
57 | |
56 | |
46 | |
40 |