Forum Discussion
Find overlap in table given a slicer value
- 3 years ago
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))
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))
- jburklund3 years ago
Helper III
Thank you so much! This worked great and I know I will use this again.