Forum Discussion
PowerBI - Matrix table blanks
- 1 year ago
Hi sd_09 ,
Thanks for reaching out to the Microsoft fabric community forum.
I tested the scenario using the following sample data:I then created a calculated column to flag rows with at least one non-blank value:
ShowRowFlag =
IF (
NOT (
ISBLANK ( OrgData1[Score1] ) &&
ISBLANK ( OrgData1[Score2] ) &&
ISBLANK ( OrgData1[Percentage] )
),
1,
0
)
I added this column as a visual-level filter, and set it to show only where ShowRowFlag = 1.
And got the result like below. Please go through the pbix file
If I misunderstand your needs or you still have problems on it, please feel free to let us know.
Best Regards,
Community Support Team
sd_09 Hey,
I will follow below steps to troubleshoot.
Ensure that filters are correctly set to exclude blanks by modifying the filter pane settings.
Use Power BI’s built-in options to format columns, setting them to exclude or hide blank values.
In the "Format" pane, adjust the settings to hide entire rows or columns with blanks under "Rows" or "Columns" visibility settings.
Check the relationships in your data model to ensure accurate parent-child relationships are maintained to prevent blanks.
Use Power Query to transform data by removing or replacing blank/null values before loading into the matrix.
Thanks
Harish KM
If these steps help resolve your issue, your acknowledgment would be greatly appreciated.