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
dkbollig
New Member

Calculate difference from previous month

I have the following table that looks as such

Values.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

I am using the following formula to count all orders

 

numOrders = COUNTROWS(AllOrders)

I then calculate the total retailed orders based on whether there is a retail date

Total Retailed = CALCULATE (
    [numOrders],
      FILTER (
        'AllOrders',
        AND (
            NOT ( ISBLANK ( 'AllOrders'[RetailDate] ) ),
            DATEVALUE(AllOrders[RetailDate]) <= MAX ( BasicCalendarUS[DateKey] )
        )
    ))

I then calculate the total retailed orders year to date by using this formula

Total Retailed  YTD = CALCULATE (
    [Total Retailed],
    FILTER (
        'AllOrders',
        YEAR( 'AllOrders'[RetailDate] ) = YEAR( MAX ( BasicCalendarUS[DateKey] ) )
    )
)

Now what I want is to have it do a month over month calculation to see the difference. I am having trouble picking up a formula that looks to the previous month and subtracts it from the current month to give me the number. 

 

Below is a screenshot of what I am looking for. ( I left out some months for simplicity)

 

value2.PNG

 

Any help would be greatly appreciated 

 

Thanks!

Derek

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @dkbollig,

 

In my opinion, you can use a calculate column to store the running total, then write a measure to get the running total of previous month and calculate the different between current value and previous.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

@v-shex-msftSounds like the idea. I can't see any operations in there so that might be something to consider.

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.