Forum Discussion
rpinxt
2 years agoSolution Sage
Custom Slicers
Do you guys know if there are custom slicers in which you can set the maximum choices a user can make? For instance when you have a slicer with 6 option set the max selectable options to 2 or 3. ...
Alex87
2 years agoSolution Sage
Hello,
You can create a measure that checks the number of selected items in a slicer and uses this to display a message or control other aspects of your report dynamically. This won't prevent more selections but can alert users or influence other report elements based on the number of selections.
DAX
Selected Count = COUNTROWS(VALUES('Table'[Column]))