Forum Discussion

tharford's avatar
tharford
Frequent Visitor
6 years ago
Solved

Filtering out 'blank' results in a Matrix

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 gi...
  • tharford's avatar
    tharford
    6 years ago

    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 ()
            )
        )
    )