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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Educate
Frequent Visitor

Matrix visual - Don't want the repeated values when drilling down

Hi,

I have a matrix that I created a measure for the values field and every row in the dropdown shows the same value until the next new amount. I only want the amount to show at the parent level. See below

 

Current

Parent1   Parent1Value
--Child1  Parent1Value
--Child2  Parent1Value
Parent2   Parent2Value
--Child1  Parent2Value

 

This is what I need from the matrix

Parent1   Parent1Value
--Child1  -blank-
--Child2  -blank-
Parent2   Parent2Value
--Child1  -blank-

2 ACCEPTED SOLUTIONS
MFelix
Super User
Super User

Hi @Educate ,

 

You must use something similar to this:

 

Measure = IF(ISINSCOPE(Table[[Child]), Blank(), [Measure Value])

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



View solution in original post

Thank you soooo much. I read about the ISINSCOPE funtion but I was not able to get it to work until now. Thank you for the correct syntax.

View solution in original post

3 REPLIES 3
MFelix
Super User
Super User

Hi @Educate ,

 

You must use something similar to this:

 

Measure = IF(ISINSCOPE(Table[[Child]), Blank(), [Measure Value])

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



Hi, your formula work to hide measure value while expand child rows but then the measure value completely disappear, it should showup in Row Header.

Any idea how can do that?

Thank you soooo much. I read about the ISINSCOPE funtion but I was not able to get it to work until now. Thank you for the correct syntax.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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