Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
i am working on the following problem: Put a selection on a slicer and show all projects where the selected vendor is listed:
I've tried to work with a measure and include them into the matrix filter criteria --> show all values, wich are not blank
Measure 'take it into account':
Solved! Go to Solution.
@Chris_23 , Have slicer on an independent vendor table
Then Create a measure
=
var _vendor = summarize(Filter(Table, Table[Vendor] in values(Vendor[Vendor]) ), Table[Project])
return
calculate([measure], filter(Table, Table[project] in _vendor) )
thanks a lot
@Chris_23 , Have slicer on an independent vendor table
Then Create a measure
=
var _vendor = summarize(Filter(Table, Table[Vendor] in values(Vendor[Vendor]) ), Table[Project])
return
calculate([measure], filter(Table, Table[project] in _vendor) )