Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
asebes
Frequent Visitor

Matrix with Blank Values

My raw data doesn't always have values for every month.  So when displaying in a matrix format i'm getting "blank" data for months that are missing.  How can i build my measure so that if the data is blank for a given month it pulls in the value from the last month with a value.  For example Jun-21 is blank but i need to go back to Apr-21 to get a number.  

 

Thanks in advance for the help!

 

asebes_0-1617223508159.png

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

@asebes 

Assuming you have a date table the measure would be along these lines

Measure = 
VAR _Date = MAX('Dates'[Date])
RETURN
    CALCULATE(
        LASTNONBLANKVALUE( Dates[Date], SUM ( 'Table'[Amount] ) )
        ,Dates[Date] <= _Date
    )

jdbuchanan71_0-1617225498673.png

 

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

See if my solution here helps - Show Balance outstanding everyday even if data for everyday is not available.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
jdbuchanan71
Super User
Super User

@asebes 

Assuming you have a date table the measure would be along these lines

Measure = 
VAR _Date = MAX('Dates'[Date])
RETURN
    CALCULATE(
        LASTNONBLANKVALUE( Dates[Date], SUM ( 'Table'[Amount] ) )
        ,Dates[Date] <= _Date
    )

jdbuchanan71_0-1617225498673.png

 

works great!  thx for the help!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.