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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
srana
Frequent Visitor

Filtering Matrix visual.

I have a matrix visual which has 3 columns and 3 slicers to filter the matrix table as shown below:- 
 
srana_0-1648647442973.png

Each column should be filtered out by its respective slicers and should not affect other columns.

All the field for the columns and slicers is coming from one table.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

I am replying on behalf of @srana .

Attached is the sample pbix file which is used here.

Here is the situation -

I have two tables i.e is DATA_1 & DATA_2 which has Field, region, version, hop & counts columns.

In transform data, I have applied pivot step so that hop_name can get the counts respectively.

After that, I append both the tables. 

On report side, I need three slicers - one is for Region, version_for_Hop1 and version_for_Hop2 (This is all coming from append table)

I took table visual to show the fields and hops.
This is how it looks like -

NikhilKumar_0-1649229277835.png

The problem is - 

When I select V1 from version_for_Hop1 and V4 or any other items from version_for_Hop2 , the table turns out blank.

NikhilKumar_1-1649229374323.png

Expected Result is- 

When I select V1 From version_for_Hop1 and V4 from version_for_Hop2, it should show respective data in each columns.

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @srana,

Can you please share a pbix or some dummy data that keep raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Hi @Anonymous ,

I am replying on behalf of @srana .

Attached is the sample pbix file which is used here.

Here is the situation -

I have two tables i.e is DATA_1 & DATA_2 which has Field, region, version, hop & counts columns.

In transform data, I have applied pivot step so that hop_name can get the counts respectively.

After that, I append both the tables. 

On report side, I need three slicers - one is for Region, version_for_Hop1 and version_for_Hop2 (This is all coming from append table)

I took table visual to show the fields and hops.
This is how it looks like -

NikhilKumar_0-1649229277835.png

The problem is - 

When I select V1 from version_for_Hop1 and V4 or any other items from version_for_Hop2 , the table turns out blank.

NikhilKumar_1-1649229374323.png

Expected Result is- 

When I select V1 From version_for_Hop1 and V4 from version_for_Hop2, it should show respective data in each columns.

 

amitchandak
Super User
Super User

@srana , You have to create measures to use the values from these slicers and ignore from others

If they are same or joined table- means filter when select then create like

 

calculate(Sum(Table[Value), removefilterS(Table[Version_V2]), removefilterS(Table[Version_V3]) )

 

if they are independent slicer then try measure like

calculate(Sum(Table[Value),filter(Table, Table[Version_v1] in values(Version1[Version_V1]) )

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.