Hi,
I have the scenario to choose the slicer not more than two selection at a time.
Is this possible? In what way?
Solved! Go to Solution.
@Umadhandapani
You can create a measure to show a text, sort of warning when users select more than 2 items from the slicer. This is the measure:
SelectionLimit =
IF(
ISCROSSFILTERED(financials[Product]) && COUNTROWS( VALUES( financials[Product] ) ) > 2 ,
"Maximum 2 items",
""
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Umadhandapani
You can create a measure to show a text, sort of warning when users select more than 2 items from the slicer. This is the measure:
SelectionLimit =
IF(
ISCROSSFILTERED(financials[Product]) && COUNTROWS( VALUES( financials[Product] ) ) > 2 ,
"Maximum 2 items",
""
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Umadhandapani I am not sure about DAX measure, but you can use the custom visual to control the selection limit
@Umadhandapani as far as I know either you can set to single selection or multi selection. I don't think there is an option to set selection limit.
FYI: I hope you already know you can multi select by holding "ctrl"
Is there any other visual to use the concept?
Or using any measures?
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
222 | |
68 | |
68 | |
62 | |
57 |
User | Count |
---|---|
251 | |
215 | |
92 | |
89 | |
73 |