Forum Discussion
Peer to peer comparision
- 8 years ago
Currently, there is no such a function to achieve this requirement.
To work around this, we can create a measure to check if current item is selected in slicer. Then add this measure to your visual and conditional format this measure.
Measure =
var selecteditem = IF(HASONEFILTER(Slicer[Slicer]),LASTNONBLANK(Slicer[Slicer],1),BLANK())
return IF(ISERROR(SEARCH(MAX(Sales[Group]),selecteditem)),0,1)Regards,
Charlie Liao
Currently, there is no such a function to achieve this requirement.
To work around this, we can create a measure to check if current item is selected in slicer. Then add this measure to your visual and conditional format this measure.
Measure =
var selecteditem = IF(HASONEFILTER(Slicer[Slicer]),LASTNONBLANK(Slicer[Slicer],1),BLANK())
return IF(ISERROR(SEARCH(MAX(Sales[Group]),selecteditem)),0,1)
Regards,
Charlie Liao
- dk_248 years agoHelper I
Thanks Charlie Liao, for workaround solution.
- dk_248 years agoHelper I
Hi Charlie Liao,
Can we implement this whitout extra slicer table.why because i have multiple visulizations on the same page. i have to give single slicer to all the visulazations to filetr in the page.
Thanks,
Koti.