Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
jburklund
Helper III
Helper III

Find overlap in table given a slicer value

I have a table of Investors which includes their InvestorID and which funds they have invested in ('FundName') and the year of the Fund ('FundYear'). I am trying to solve for, given a subject Fund (chosen by a slicer), how many investors overlap between each Fund in the Table and the Subject Fund. 

I tried to make a calculated table filtered by a parameter, but I have to use imported data and so I couldn't get the calculated table to filter dynamically with the parameter. I know I need to create essentially a filtered table by the Subject Fund and check if each investor record ('InvestorID') exists in the filtered table and the Input Data table so I can get my "Investors from Subject Fund" count. My report is much more complicated than this  but I've included a sample set of data below.

 

Screenshot 2023-05-02 175025.png

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jburklund , You need to create an independent table with fund Name. Use that slicer and then you have measure below and use that with other column in visual

 

All measure in table should follow the give approach or use measure as measure level filter

 

Measure =

var _tab = summarize(filter(Table, Table[FundName] in values(FundName[FundName] )), Table[InvestorID])
return
calculate(countrows(Table), filter(Table, Table[InvestorID] in _tab))

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@jburklund , You need to create an independent table with fund Name. Use that slicer and then you have measure below and use that with other column in visual

 

All measure in table should follow the give approach or use measure as measure level filter

 

Measure =

var _tab = summarize(filter(Table, Table[FundName] in values(FundName[FundName] )), Table[InvestorID])
return
calculate(countrows(Table), filter(Table, Table[InvestorID] in _tab))

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Thank you so much! This worked great and I know I will use this again.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.