Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Shreeram04
Resolver III
Resolver III

Slicer

Hi All,

 

I have a slicer that contains three products apple,redmi, and one plus when I click apple it filters all apple values from a table, how can I achieve this one. Please help me. Thanks in advance.

 

Following table

 

Shreeram04_0-1652675951172.png

For example, when I click apple means the total sale value shown is 1500 and redmi means the total value shown is 1200. Please help me. Thanks in advance.

1 ACCEPTED SOLUTION
isabella
Employee
Employee

Hi @Shreeram04 

I did a local test,below are test screenshot select Redmi

isabella_0-1652939149520.png

 

select Apple :

 

isabella_1-1652939149521.png

 

 

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

isabella_2-1652939149522.png

 

 

 

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.

View solution in original post

3 REPLIES 3
isabella
Employee
Employee

Hi @Shreeram04 

I did a local test,below are test screenshot select Redmi

isabella_0-1652939149520.png

 

select Apple :

 

isabella_1-1652939149521.png

 

 

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

isabella_2-1652939149522.png

 

 

 

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.

Shreeram04
Resolver III
Resolver III

@amitchandak thanks for your reply, but my requirement is when I select apple in a slicer all cells that contain apple should be filtered.

amitchandak
Super User
Super User

@Shreeram04 , Please split the product column of table 2, using split by delimiter in power query

 

Split Column Power Query: https://youtu.be/FyO9Vmhcfag

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.