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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
mikeoshields
Helper I
Helper I

Difference between two rows in a matrix (row subdifferences)

I've searched through the community for an answer to this but haven't found one yet. Where there would normally be Row Subtotals, I need to have row subdifferences.  The first image below is the matrix in PowerBI, the second is an excel example of what I need.  Any help would be appreciated.

 

mikeoshields_0-1664373618514.png

 

mikeoshields_1-1664374210290.png

 

 

1 ACCEPTED SOLUTION
v-yinliw-msft
Community Support
Community Support

Hi @mikeoshields ,

 

Measure can only be placed in the value of the matrix view, and the view you expect cannot be achieved with a matrix.

 

This can currently be achieved:

Sample data:

vyinliwmsft_0-1664442613396.png

 

Measure:

Difference =
CALCULATE (
    MAX ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        [UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
            && [Date] = SELECTEDVALUE ( 'Table'[Date] )
    )
)
    - CALCULATE (
        MIN ( 'Table'[Value] ),
        FILTER (
            ALL ( 'Table' ),
            [UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
                && [Date] = SELECTEDVALUE ( 'Table'[Date] )
        )
    )

 

The result is:

vyinliwmsft_1-1664442613400.png

 

              

 

Hope this helps you.

 

Best Regards,

Community Support Team _Yinliw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yinliw-msft
Community Support
Community Support

Hi @mikeoshields ,

 

Measure can only be placed in the value of the matrix view, and the view you expect cannot be achieved with a matrix.

 

This can currently be achieved:

Sample data:

vyinliwmsft_0-1664442613396.png

 

Measure:

Difference =
CALCULATE (
    MAX ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        [UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
            && [Date] = SELECTEDVALUE ( 'Table'[Date] )
    )
)
    - CALCULATE (
        MIN ( 'Table'[Value] ),
        FILTER (
            ALL ( 'Table' ),
            [UCT_CD] = SELECTEDVALUE ( 'Table'[UCT_CD] )
                && [Date] = SELECTEDVALUE ( 'Table'[Date] )
        )
    )

 

The result is:

vyinliwmsft_1-1664442613400.png

 

              

 

Hope this helps you.

 

Best Regards,

Community Support Team _Yinliw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors