Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I am in urgent need of help following hours of searching!
I have two tables:
Table:
Term | Name | Result |
T1 | Name1 | 2 |
T2 | Name1 | 4 |
T3 | Name2 | 6 |
T3 | Name3 | 8 |
Unrelated slicer table:
Name |
Name1 |
Name2 |
Name3 |
What I want to do:
I have tried a few formulas, but I think they are falling over where there are multiple rows.
Help would be greatly appreciated.
Solved! Go to Solution.
@Anonymous , Try a measure like
Measure =
calculate(count(*), filter(Table, table[Name] in values(Table2[Name])))+0
refer my video on this -https://www.youtube.com/watch?v=lOEW-YUrAbE
@Anonymous , Try a measure like
Measure =
calculate(count(*), filter(Table, table[Name] in values(Table2[Name])))+0
refer my video on this -https://www.youtube.com/watch?v=lOEW-YUrAbE
Thanks for such a swift and helpful reply @amitchandak
Will try this out it looks more elegant than the one I just found: