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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
MarshalSK
Resolver I
Resolver I

Calculating the difference dynamically, based on Year selection

Hi Folks, I need asssitance to acheieve below scenario.

 

Trying to calculate the sales difference for year on year and for each product. By default, all years will be dispayed, the main cache is if the user selects different year how to calculated. For example: if user selectes 2019, 2021, 2023.

 

Data:

MarshalSK_0-1704736423119.png

Expected result:

MarshalSK_1-1704736454252.png

 

   

3 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
Super User

Hi, I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I hope the below can provide some ideas on how to create a solution for your semantic model.

 

Jihwan_Kim_0-1704736924763.png

 

Jihwan_Kim_1-1704737280190.png

 

 

compare to the previous within the slicer selection: = 
VAR _currentselectsales =
    SUM ( Sales[Sales] )
VAR _currentselectyear =
    MAX ( 'Year'[Year] )
VAR _prevselectyear =
    MAXX (
        FILTER ( ALLSELECTED ( 'Year' ), 'Year'[Year] < _currentselectyear ),
        'Year'[Year]
    )
VAR _prevselectsales =
    CALCULATE ( SUM ( Sales[Sales] ), 'Year'[Year] = _prevselectyear )
RETURN
    IF ( NOT ISBLANK ( _prevselectsales ), _currentselectsales - _prevselectsales )

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

MarshalSK
Resolver I
Resolver I

6 REPLIES 6
MarshalSK
Resolver I
Resolver I

@Jihwan_Kim  Perfect.

Jihwan_Kim
Super User
Super User

Hi, I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I hope the below can provide some ideas on how to create a solution for your semantic model.

 

Jihwan_Kim_0-1704736924763.png

 

Jihwan_Kim_1-1704737280190.png

 

 

compare to the previous within the slicer selection: = 
VAR _currentselectsales =
    SUM ( Sales[Sales] )
VAR _currentselectyear =
    MAX ( 'Year'[Year] )
VAR _prevselectyear =
    MAXX (
        FILTER ( ALLSELECTED ( 'Year' ), 'Year'[Year] < _currentselectyear ),
        'Year'[Year]
    )
VAR _prevselectsales =
    CALCULATE ( SUM ( Sales[Sales] ), 'Year'[Year] = _prevselectyear )
RETURN
    IF ( NOT ISBLANK ( _prevselectsales ), _currentselectsales - _prevselectsales )

 


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

@Jihwan_Kim  One more quick question. How to apply filter>70, on top of the above result?

Perfect

Hi, I am not sure if I understood your question correctly, but do you mean something like below?

 

Jihwan_Kim_0-1704822360780.png

 

compare to the previous within the slicer selection: = 
VAR _currentselectsales =
    SUM ( Sales[Sales] )
VAR _currentselectyear =
    MAX ( 'Year'[Year] )
VAR _prevselectyear =
    MAXX (
        FILTER ( ALLSELECTED ( 'Year' ), 'Year'[Year] < _currentselectyear ),
        'Year'[Year]
    )
VAR _prevselectsales =
    CALCULATE ( SUM ( Sales[Sales] ), 'Year'[Year] = _prevselectyear )
RETURN
    IF (
        NOT ISBLANK ( _prevselectsales )
            && _currentselectsales - _prevselectsales > 70,
        _currentselectsales - _prevselectsales
    )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

I'm trying to bring in the same functionality and trying to use this same DAX but it's throwing an error. 

BUSH781_0-1717602382473.png

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.