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
AliceW
Impactful Individual
Impactful Individual

Calculate the difference between one month and the previous selected month

Hello ladies and gents,

This is killing me. I have an Amount for each month of the previous two years. I want to calculate the difference between one month and the previously SELECTED month.

Like say the user selects January 2021 and January 2020. The difference should be between these months.

But if the user selects January and February 2021, the difference should be between them.

If the user selects January and June 2021, you guessed it, the difference should be between them.

I know we have PREVIOUSMONTH and SAMEPERIODLAST YEAR. But is there a way to mix them?

Huge thanks,

Alice

 

2 ACCEPTED SOLUTIONS
KNP
Super User
Super User

Hi Alice,

 

I may be misunderstanding, but doesn't SAMEPERIODLASTYEAR do this by itself?

When you say...

KNP_0-1642970456626.png

Does that mean if the user selects January and June 2021, you want to compare it with January and June 2020?

 

Like I say, I may be misunderstanding, but I've attached a sample PBIX in case it helps.

Gif below demonstrates what I mean.

KNP_1-1642970604585.gif

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
chrome-9xf-Zagzel-B

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
KIfp67uy-Sr
Proud to be a Super User!PBI-Super-User-Rank-30x30-1x

View solution in original post

V-lianl-msft
Community Support
Community Support

Hi @AliceW ,

 

Maybe I understand,Please try this measure and refer to the attached pbix.

 

diff = 
VAR month_1 =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[year_month] ), 'Table'[year_month], ASC ),
        ALLSELECTED ( 'Table' )
    )
VAR month_2 =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[year_month] ), 'Table'[year_month], DESC ),
        ALLSELECTED ( 'Table' )
    )
VAR First_ =
    CALCULATE (
        SUM ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[year_month] = month_1 )
    )
VAR Second_ =
    CALCULATE (
         SUM ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[year_month] = month_2 )
    )
RETURN
    Second_-First_

 

Vlianlmsft_0-1643163190816.pngVlianlmsft_1-1643163210275.png

 

 

Best Regards,
Liang
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

3 REPLIES 3
AliceW
Impactful Individual
Impactful Individual

Thank you so much, guys!!

V-lianl-msft
Community Support
Community Support

Hi @AliceW ,

 

Maybe I understand,Please try this measure and refer to the attached pbix.

 

diff = 
VAR month_1 =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[year_month] ), 'Table'[year_month], ASC ),
        ALLSELECTED ( 'Table' )
    )
VAR month_2 =
    CALCULATE (
        TOPN ( 1, VALUES ( 'Table'[year_month] ), 'Table'[year_month], DESC ),
        ALLSELECTED ( 'Table' )
    )
VAR First_ =
    CALCULATE (
        SUM ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[year_month] = month_1 )
    )
VAR Second_ =
    CALCULATE (
         SUM ( 'Table'[value] ),
        FILTER ( 'Table', 'Table'[year_month] = month_2 )
    )
RETURN
    Second_-First_

 

Vlianlmsft_0-1643163190816.pngVlianlmsft_1-1643163210275.png

 

 

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

KNP
Super User
Super User

Hi Alice,

 

I may be misunderstanding, but doesn't SAMEPERIODLASTYEAR do this by itself?

When you say...

KNP_0-1642970456626.png

Does that mean if the user selects January and June 2021, you want to compare it with January and June 2020?

 

Like I say, I may be misunderstanding, but I've attached a sample PBIX in case it helps.

Gif below demonstrates what I mean.

KNP_1-1642970604585.gif

 

Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
chrome-9xf-Zagzel-B

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
KIfp67uy-Sr
Proud to be a Super User!PBI-Super-User-Rank-30x30-1x

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.

Top Solution Authors