Forum Discussion
Help ignoring a slicer
- 1 year ago
Hi lekkerbek
The easiest way to do this is duplicate the customer and group column into a seperate table.
Don't join this on to your existing table and then put that in your slicer.
Then you can create a measure to filter the data.
Add the measure into your Filter Pane under Filters on this visual.
filter measure =
var curr =SelectedValue(table[duplicated customer group])Return
IF( SelectedValue(table[original customer group]) = curr, "Y")Then filter this to Y
Hi lekkerbek
The easiest way to do this is duplicate the customer and group column into a seperate table.
Don't join this on to your existing table and then put that in your slicer.
Then you can create a measure to filter the data.
Add the measure into your Filter Pane under Filters on this visual.
filter measure =
var curr =SelectedValue(table[duplicated customer group])
Return
IF( SelectedValue(table[original customer group]) = curr, "Y")
Then filter this to Y
Works like a charm. Thanks a million!