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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

How to hide value in Matrix when not expanded/collapsed?

how not to show value in matrix column?

If not expanded i want it to be blank, then when i collapsed i will see the value.

 

D_C_0-1700452906163.png

 

thanks in advance

1 ACCEPTED SOLUTION
rubayatyasmin
Community Champion
Community Champion

Hi, @Anonymous 

you can try to match the text color to the background so that it looks blank, that could be a woraround. or you can use ISINSCOPE dax func to determine your your current level of drill down. 

 

for example,

Measure = 
IF(
   ISINSCOPE(Table[YourColumnName]), 
   SUM(Table[YourValueColumn]), 
   BLANK()
)

 

refer: https://learn.microsoft.com/en-us/dax/isinscope-function-dax


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


View solution in original post

3 REPLIES 3
Anonymous
Not applicable

got it thank you

if my answer is helpful then accept it as a solution and why not give it a kudos. 


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


rubayatyasmin
Community Champion
Community Champion

Hi, @Anonymous 

you can try to match the text color to the background so that it looks blank, that could be a woraround. or you can use ISINSCOPE dax func to determine your your current level of drill down. 

 

for example,

Measure = 
IF(
   ISINSCOPE(Table[YourColumnName]), 
   SUM(Table[YourValueColumn]), 
   BLANK()
)

 

refer: https://learn.microsoft.com/en-us/dax/isinscope-function-dax


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.