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
CBrinky
Frequent Visitor

Apply data to certain rows in a matrix

CBrinky_0-1706595028443.png

I'm trying to hide the dates in this matrix at the 2nd row level when expanded but keep the "header" dates.

 

The dates are the actual completion date and the due date of the overall project, so they do not apply to their "subrows". 

 

How can I approach this?

 

TIA!

2 REPLIES 2
Daniel29195
Super User
Super User

Helo Tia @CBrinky 

 

in order to control what to show on each level, you can use isinscope function in your measure : 

example on how to use it : 

you have a matrix from 2 levels and 

you dont want to show dates in the second level : 

 

measure = 

switch( 

true() , 

isinscope( tbl_ name[col_name]) ,  blank(), 

isinscope( tblname[col_name_lvl1]) , [calculations you want] 

)

 

hope this makes sense .

 

 

If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution !
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠

CBrinky_0-1706747684025.png



I don't quite understand the calculations that I'd do in the last part? I only want to hide the dates from the task name rows

 

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