Forum Discussion

asebes's avatar
asebes
Frequent Visitor
5 years ago
Solved

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...
  • jdbuchanan71's avatar
    5 years ago

    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
        )