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
Anonymous
Not applicable

Filters out only one column using Slicer in the multiple column table

Hello Good morning,

When I choose the option on slicer example: month slicer for month January 
The table displays the column A, B, C, and D for the January month

Instead, I am trying to achieve that when the user selects a month Jan
The table should change value only for column A & rest should be same 


Help is appreciated 



Thank you 
@needhelp

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

Here's my solution.

Sample data:

vstephenmsft_0-1660810489608.png

 

1.Create a seperate table by creating a calculated table.

Month = DISTINCT('Table'[Month])

vstephenmsft_1-1660810527513.png

 

2.Create a measure to get the dynamic value by the slicer filtering.

Dynamic A = CALCULATE(SUM('Table'[A]),FILTER('Table',[Month] in ALLSELECTED('Month'[Month])))

 

3.The field in the slicer is from Month table. Here's the result.

vstephenmsft_2-1660810623114.png

 

You can check more details from my attachment.

 

Best Regards,

Stephen Tao

 

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

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

Here's my solution.

Sample data:

vstephenmsft_0-1660810489608.png

 

1.Create a seperate table by creating a calculated table.

Month = DISTINCT('Table'[Month])

vstephenmsft_1-1660810527513.png

 

2.Create a measure to get the dynamic value by the slicer filtering.

Dynamic A = CALCULATE(SUM('Table'[A]),FILTER('Table',[Month] in ALLSELECTED('Month'[Month])))

 

3.The field in the slicer is from Month table. Here's the result.

vstephenmsft_2-1660810623114.png

 

You can check more details from my attachment.

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

MFelix
Super User
Super User

Hi @Anonymous ,

 

For this you must use different measures one for each of the values you have so assuming you want to calculate the SUM of column A, B, C and D you must create metrics similar to this:

 

A value = SUM(Table[ColumnA])

B value = CALCULATE( SUM(Table[ColumnB]), ALL(Table[DateColumn]))

C value = CALCULATE( SUM(Table[ColumnC]), ALL(Table[DateColumn]))

D value = CALCULATE( SUM(Table[ColumnD]), ALL(Table[DateColumn]))

 

Now use this metrics on your table visualization


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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.