The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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) )