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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
music43
Advocate II
Advocate II

Hide Rows in Table/Matrix

Hi

 

I have a table/matrix with a couple of dimensions and ten measures. Two of the measures will always return a value (M7 & M8).

 

Is there a way to only show the rows where there is a value in one of the other 8 measures (M1 thru M6)?

music43_0-1685114262797.png

In this example I would like to hide rows D and G. In my real world caseI have hundreds or rows I need hidden.

 

Thanks in advance.

 

Oli

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @music43 ,

 

I suggest you to try to create a measure to filter your visual.

Filter = 
VAR _Condition = ISBLANK([M1])&&ISBLANK([M2])&&ISBLANK([M3])&&ISBLANK([M4])&&ISBLANK([M5])&&ISBLANK([M6])
RETURN
IF(_Condition,0,1)

Add this measure into visual level filter and set this measure to show items when value = 1.

vrzhoumsft_0-1685353837752.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @music43 ,

 

I suggest you to try to create a measure to filter your visual.

Filter = 
VAR _Condition = ISBLANK([M1])&&ISBLANK([M2])&&ISBLANK([M3])&&ISBLANK([M4])&&ISBLANK([M5])&&ISBLANK([M6])
RETURN
IF(_Condition,0,1)

Add this measure into visual level filter and set this measure to show items when value = 1.

vrzhoumsft_0-1685353837752.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Mayuri_Ghosh
Helper I
Helper I

Hi,

You can hide rows in a table/matrix by using the exclude option by right-clicking on the row you want to hide or can filter it.

 

Mayuri_Ghosh_0-1685336087642.png

Thank You

Ritaf1983
Super User
Super User

Hi @music43 

Rows cannot be hidden in the visualization, but they can be filtered.
Create a flag measure that checks if your measures return blank values.
According to this measure, filter the table.

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.