Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a Matrix where the rows are Employee Names, columns are the Day & Date and the values are a Measure that is essentially a nested If that looks up whether the employee accessed a door on the given day & whether they had been approved to. The result of the measure colous the cell where:
My problem is that I want to show only the rows (Employees) where I have data. All the traditional filter methods I can think of result in the filter being applied to the first date column. So if I have data in the second date it dissapears.
Solved! Go to Solution.
I've fixed it! AND I have learned an important lesson!
"" is not blank!
So I have replaced the "" at the end of my nested if statement with BLANK() and my filter expression works as intended. I can now concentrate on finishing the conditional formatting issues
Access Status =
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "Approved",
"#108372",
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "",
"#840029",
IF (
[ComplianceSiteAccesses] = ""
&& [ComplianceAccessApproved] = "Approved",
"#ff0018",
BLANK ()
)
)
)
Screenshot #1 shows an unfiltered list.
Screenshot #2 shows when I have applied a filter (the filter in that case is a measure in it's own right - see DAX below):
DisplayAccessStatus =
IF (
[Access Status] = "#ff0018",
1,
IF ( [Access Status] = "#108372", 1, IF ( [Access Status] = "#840029", 1, 0 ) )
)
But I get the same result if I apply a 'Is Not Blank' filter on my Value Measure (for the record that is this DAX):
Access Status =
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "Approved",
"#108372",
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "",
"#840029",
IF (
[ComplianceSiteAccesses] = ""
&& [ComplianceAccessApproved] = "Approved",
"#ff0018",
""
)
)
)
My issue is that the filter seems to apply to the first column of the matrix only. I'd like to only filter out when the whole row is blank. See Alexander dissapears from my filtered view (Screenshot #2).
I am very confused, and very close to this data so please let me know if I am not being clear...😁
I've fixed it! AND I have learned an important lesson!
"" is not blank!
So I have replaced the "" at the end of my nested if statement with BLANK() and my filter expression works as intended. I can now concentrate on finishing the conditional formatting issues
Access Status =
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "Approved",
"#108372",
IF (
[ComplianceSiteAccesses] = "Accessed"
&& [ComplianceAccessApproved] = "",
"#840029",
IF (
[ComplianceSiteAccesses] = ""
&& [ComplianceAccessApproved] = "Approved",
"#ff0018",
BLANK ()
)
)
)