Forum Discussion
Slicer
- 4 years ago
Hi Shreeram04
I did a local test,below are test screenshot, select Redmi
select Apple :
Here are my steps:
At first I created 3 measures to sum the 【product】 has the specific string ,apple ,oneplus or redmi
hasapple = SUMX(Table4, IF(CONTAINSSTRING(MAX([product]),"apple"),1,0))
hasoneplus = SUMX(Table4,IF(CONTAINSSTRING(MAX([product]),"oneplus"),1,0))
hasredmi = SUMX(Table4,IF(CONTAINSSTRING(MAX([product]),"redmi"),1,0))then I create a measure to connect these measure and slicer ,Table5 is the slicer table
filtermeasure = SWITCH( TRUE(),
SELECTEDVALUE('Table5'[product])="Apple" ,[hasapple],
SELECTEDVALUE('Table5'[product])="Redmi" ,[hasredmi],
SELECTEDVALUE('Table5'[product])="Oneplus" ,[hasoneplus],
1)Then in visualization I can use this measure to filter the table :
Select the table, add the measure as filter,then select is 1 ,then press the apply filter button
Best Regards,
Community Support Team _Isabella
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Shreeram04
I did a local test,below are test screenshot, select Redmi
select Apple :
Here are my steps:
At first I created 3 measures to sum the 【product】 has the specific string ,apple ,oneplus or redmi
hasapple = SUMX(Table4, IF(CONTAINSSTRING(MAX([product]),"apple"),1,0))
hasoneplus = SUMX(Table4,IF(CONTAINSSTRING(MAX([product]),"oneplus"),1,0))
hasredmi = SUMX(Table4,IF(CONTAINSSTRING(MAX([product]),"redmi"),1,0))
then I create a measure to connect these measure and slicer ,Table5 is the slicer table
filtermeasure = SWITCH( TRUE(),
SELECTEDVALUE('Table5'[product])="Apple" ,[hasapple],
SELECTEDVALUE('Table5'[product])="Redmi" ,[hasredmi],
SELECTEDVALUE('Table5'[product])="Oneplus" ,[hasoneplus],
1)
Then in visualization I can use this measure to filter the table :
Select the table, add the measure as filter,then select is 1 ,then press the apply filter button
Best Regards,
Community Support Team _Isabella
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.