- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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)?
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Thank You
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
09-16-2024 02:49 AM | |||
08-23-2024 07:09 AM | |||
10-21-2024 01:42 AM | |||
09-25-2024 07:49 AM | |||
10-22-2024 04:49 PM |
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |