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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
showy
Helper II
Helper II

Dynamic field through Filter in matrix visual

Hello

I have the following data as shown in the table below (simple Excel with 2 rows and the data shown here)

I want to change the name of the field lvl3 with the filter shareholder.


The following should happen:
If I do not set a filter, the matrix should display Project A.

showy_0-1744632909863.png


If I select Company 1 in the shareholder slicer, Project 1 (0.25) should be displayed on the third level (project name + capa of the selected value in the slicer.

showy_1-1744632974984.png


If I select Company 2 in the shareholder slicer, Project 1 (0.75) should be displayed on the third level (project name + capa of the selected value in the slicer.

showy_2-1744633013769.png

 


I have already tried it with a field parameter and can switch between lvl3 and show there. But I actually want everything to be controlled depending on the shareholder slicer.

Is that possible?



1 ACCEPTED SOLUTION

Hi @showy ,

 

Thank you for reaching out to Microsoft Fabric Community Forum.

@PijushRoy Thank you for your quick response.

 

Could you please provide a bit more detail about your requirement?
It would really help if you could explain:

>>What exactly you're trying to achieve in the visual?

>>What should the output look like when a specific shareholder is selected?

>>And, if possible, can you share a small example of your data along with what the expected result should look like?

 

Regards,

B Manikanteswara Reddy

View solution in original post

9 REPLIES 9
v-bmanikante
Community Support
Community Support

Hi @showy ,

 

May I ask if you have gotten this issue resolved?

 

If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.

 

Regards,

B Manikanteswara Reddy

Hi @showy ,

 

As we haven’t heard back from you, we will go ahead and close this ticket for now.

If you need any further assistance, please don’t hesitate to raise a new ticket, we’re always happy to help.

Our sincere apologies if there was any inconvenience caused.

 

Regards,

B Manikanteswara Reddy

 

v-bmanikante
Community Support
Community Support

Hi @showy ,

 

May I ask if you have gotten this issue resolved?

 

If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster

 

Regards,

B Manikanteswara Reddy

v-bmanikante
Community Support
Community Support

Hi @showy ,

 

May I ask if you have gotten this issue resolved?

 

If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.

 

Regards,

B Manikanteswara Reddy

PijushRoy
Super User
Super User

Hi @showy 

You can create below measure 

Measure = 
VAR IsShareholderFiltered = ISFILTERED('Table'[shareholder])
VAR ShowValue = SELECTEDVALUE('Table'[show])
VAR Lvl3Value = SELECTEDVALUE('Table'[lvl3])
RETURN
IF(
    IsShareholderFiltered,
    ShowValue,
    Lvl3Value
)

 

Then pull the measure in the value section of the Matrix table

PijushRoy_0-1744640748579.png

 

PijushRoy_1-1744640764827.png

Or create simple table in place of matrix table

PijushRoy_2-1744640810191.png

 

 




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





Hi,

thanks for your effort.

The problem ist that it has to be in the rows so lvl1, lvl2 and the field with the logic.
In my case it wont work if its a seperatre measure which i can only drag to the value section.

PijushRoy
Super User
Super User

Hi @showy 

CAn you please paste the excel data here, not in form of image




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





Hi i tried but xlsx. is not supported..... why there isnt just a file explorer. I copied the data here. Its just 2 rows with these columns

 

 

lvl1lvl2lvl3valueshareholdercapashow
EUGermanyProject A100Company 10,25Project A (0,25)
EUGermanyProject A200Company 20,75Project A (0,75)

Hi @showy ,

 

Thank you for reaching out to Microsoft Fabric Community Forum.

@PijushRoy Thank you for your quick response.

 

Could you please provide a bit more detail about your requirement?
It would really help if you could explain:

>>What exactly you're trying to achieve in the visual?

>>What should the output look like when a specific shareholder is selected?

>>And, if possible, can you share a small example of your data along with what the expected result should look like?

 

Regards,

B Manikanteswara Reddy

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors