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 ID | DeviceName |
1 | New Device |
2 | Pre owned Device |
3 | Refurbished Device |
4 | Outdated Device |
2. Data table
Projects | Related Devices |
Project 1 | New Device, Pre owned Device |
Project 2 | Pre owned Device, Outdated Device, New Device |
Project 3 | Refurbished Device |
Project 4 | Outdated Device, Refurbished Device |
Project 5 | Pre owned Device |
Project 6 | New 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,