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
Phil_E
Regular Visitor

Matrix Visualization Issue with displaying new data.

Hi - I am developing a matrix visual to display the application availability percentage for each month. I have a slicer dropdown "Outage by Month" that a user can select a month and it will show only the rows for the month where the availability is <100%. When no month is selected all rows inluding 100% and <100% availablity for all the months are displayed. I ran into a problem, when I added a new record for the current month (Mar-25) that had 100% availability for this month and this record will not show up in the matrix, unless I add add a value of 100% in the month of Feb-25. Or I set the value to be less that 100% which is strange. The DAX code is below:

ShowRows =
VAR IsMonthSelected = HASONEVALUE('Availability Master Report'[Month])
RETURN
    IF(
        IsMonthSelected,
        -- If a month is selected, show rows where availability is less than 1
        IF(MAX('Availability Master Report'[Availability Percent]) <1, 1, 0),
        -- If no month is selected, show all rows
        1
    )
 
ShowRows is added to the matrix filter where ShowRows is set to 1. I appreciate any help in resolving this issue. 
1 REPLY 1
lbendlin
Super User
Super User

To report on things that are not there you need to use disconnected tables and/or crossjoins

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Please show the expected outcome based on the sample data you provided.

Need help uploading data? https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

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.

Top Solution Authors
Top Kudoed Authors