Quantcast
Channel: Developer topics
Viewing all articles
Browse latest Browse all 17884

Slicer Filtering the multi selected values search exact value

$
0
0

Hello All,

 

I'm running into something that may be a very common issue but cannot get it through.

 

Here is my situation.

1.  A Slicer table- Device

Device IDDeviceName
1New Device 
2Pre owned Device
3Refurbished Device
4Outdated Device

 

2. Data table

ProjectsRelated Devices
Project 1New Device, Pre owned Device
Project 2Pre owned Device, Outdated Device, New Device
Project 3Refurbished Device
Project 4Outdated Device, Refurbished Device
Project 5Pre owned Device
Project 6New Device

 

My slicer is multiselected so I select " New Device" I should be getting 3 rows as a result in table but I get only one record which Project 6. What I'm looking for when I select the New Device from slicer, it should give the result of Project1, Project 2and Project6. If I select the New Device and Pre owned device, I should be getting the Project 1, 2, 5 and 6.

 

Tried using the custom measure but it doesn' work.
IsFiltered = IF(
SUMX('Device',
FIND(
'Slicer'[DeviceName],
MAX(Projects[RelatedDevices]),,0)
) > 0,
"True",
"False"
)

 

Any suggestions would be greatly appreciated.

 

Thanks,


Viewing all articles
Browse latest Browse all 17884

Trending Articles