Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello everyone, hope you're fine today!
I have 2 tables with a many to many active relationship and want to count the number of row in table A that doesn't have match on table B.
On other posts from Power Bi Community, got the following solution: IF(ISBLANK(RELATED('ZMMQ3020'[@ SKU Center Key]));FALSE();TRUE())
But i received the following message: The column 'ZMMQ3020[@ SKU Center Key]' either doesn't exist or doesn't have a relationship to any table available in the current context.
But they have an active relationship. Any idea why this is happening and any other way to make it work?
Obs.: Use merge in Power Query isnt an option, since it grows my refresh time to more than 30 min because of the size of my data. Thanks in advance.
Hi @tfraletti ,
you can also use this measure:
Try this:
COUNTROWS(
FILTER(
'Table A',
NOT CONTAINS(
'Table A', [SKU Center Key],
'ZMMQ3020', [SKU Center Key]
)
)
)
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
100 | |
99 | |
38 | |
37 |
User | Count |
---|---|
158 | |
124 | |
76 | |
74 | |
63 |