Forum Discussion

PowerBI-P's avatar
PowerBI-P
Frequent Visitor
5 months ago
Solved

Matrix table in Power bi

Hi All,   Please help me with this problem if you have any idea. I'm trying to work on matrix in Power BI as given below example.   Then I created Average measure to get the values after "...
  • danextian's avatar
    5 months ago

    Hi PowerBI-P 

    Create a display table which is disconnected from the rest of the model, containing the column header values.

    Create a measure referencing the table

    Display Table Measure = 
    VAR _total = [Total Transactions]
    VAR _avg =
        AVERAGEX ( ALLSELECTED ( Dates[Day of Week Short] ), [Total Transactions] )
    VAR _day =
        CALCULATE (
            [Total Transactions],
            TREATAS ( VALUES ( DisplayTable[Day of Week Short] ), Dates[Day of Week Short] )
        )
    RETURN
        SWITCH (
            SELECTEDVALUE ( DisplayTable[Day of Week Short] ),
            "Total", _total,
            "Avg", _avg,
            _day
        )
    

    Please see the attached pbix.