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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bestevezdyb
Frequent Visitor

Row Measure Difference

Hello,

I would like to know if it is possible to do in the same matrix what I show in the image. It is about calculating the differences between two years for different metrics, and always putting the difference between the years.

 

 SalesUnit
2019205
2020307
Difference102

 

The only solution I found was this one, but, maybe there is a better one.

 

 

salesDifference = 
VAR _year =
    SWITCH (
        TRUE (),
        SELECTEDVALUE ( dim_date[year] ) <> 0, "year",
        BLANK ()
    )
RETURN
IF ( _year = "", [salesDiff], [sales] )
----
WHERE [salesDiff] IS

salesDiff = 

VAR _minsales = 

    CALCULATE( SUM ( fac_sales[sales] ), Filter(dim_date, dim_date[year] = Min( dim_date[year] ) ) )


VAR _maxsales = IF (

    CALCULATE( SUM ( fac_sales[sales] ), Filter(dim_date, dim_date[year] = Max( dim_date[year] ) ) )

RETURN

_maxsales - _minsales

 

 

Thanks

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@bestevezdyb , On of this way is use isinscope or isfiltered and move this diff to grand total

 

new sales = if(isinscope(Date[Year]), [sale], [diff])

 

or something like this

https://community.powerbi.com/t5/Desktop/Grand-Total-in-Bar-Chart/m-p/612631

 

Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@bestevezdyb , On of this way is use isinscope or isfiltered and move this diff to grand total

 

new sales = if(isinscope(Date[Year]), [sale], [diff])

 

or something like this

https://community.powerbi.com/t5/Desktop/Grand-Total-in-Bar-Chart/m-p/612631

 

Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a
https://www.youtube.com/watch?v=km41KfM_0uA

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.