Syncing / filtering slicers in Power BI (9:05)
https://www.youtube.com/watch?v=oiCVBUQenls
You could add a filter to the slicers "where MEASURE is not blank"
A more efficient way is to add a measure: INT (NOT ISEMPTY (tablename)) and check for Value is 1.
Add these measures to a "measures" table. Create it with:
Slicers = FILTER( { 1 } , FALSE )
Show TOP N sales in slicer:
SliceTopProducts = RANKX( ALLSELECTED ('Product'), [Sales Amount] )
Filter on Value is less than or equal N
Comments
Post a Comment