- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@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))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@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))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
02-22-2024 01:56 AM | |||
Anonymous
| 08-23-2019 08:06 AM | ||
12-14-2023 06:13 AM | |||
08-02-2024 11:49 AM | |||
Anonymous
| 11-28-2018 10:17 AM |
User | Count |
---|---|
83 | |
79 | |
53 | |
39 | |
37 |
User | Count |
---|---|
104 | |
85 | |
47 | |
43 | |
42 |