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
nates05
Frequent Visitor

Running Total Difference between each Time Period

Hi, my data is below.

 

I generate data that is a running total of items sold ("Total Sold") per item and wanted to generate values that measures the difference between periods ("Sold per period"). For each item also, the earliest entry will be the initial value. May I ask how can I create a measure or caculated column for this? Will appreciate any help!

 

Annotation 2019-09-03 145802.png

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

Hi @nates05 ,

 

You can try my method:
At first, create a new column "rank".

rank =
RANKX ( 'Table', 'Table'[Period],, ASC, DENSE )

Then create your goal column.

Sold per period =
VAR a =
    CALCULATE (
        FIRSTNONBLANK ( 'Table'[Total Sold], 1 ),
        FILTER (
            'Table',
            'Table'[Serial Codes] = EARLIER ( 'Table'[Serial Codes] )
                && 'Table'[rank]
                    = EARLIER ( 'Table'[rank] ) - 1
        )
    )
RETURN
    'Table'[Total Sold] - a

Here is the result.
2-1.PNG

 

Best Regards,

Eads

 

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

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

5 REPLIES 5
v-eachen-msft
Community Support
Community Support

Hi @nates05 ,

 

You can try my method:
At first, create a new column "rank".

rank =
RANKX ( 'Table', 'Table'[Period],, ASC, DENSE )

Then create your goal column.

Sold per period =
VAR a =
    CALCULATE (
        FIRSTNONBLANK ( 'Table'[Total Sold], 1 ),
        FILTER (
            'Table',
            'Table'[Serial Codes] = EARLIER ( 'Table'[Serial Codes] )
                && 'Table'[rank]
                    = EARLIER ( 'Table'[rank] ) - 1
        )
    )
RETURN
    'Table'[Total Sold] - a

Here is the result.
2-1.PNG

 

Best Regards,

Eads

 

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

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Hi, would this have an M code equivalent?

 

I realized I need to insert these columns in power query itself.

 

Thanks!

@v-eachen-msft that worked! thank you!

Greg_Deckler
Super User
Super User

Does the image posted represent source data or the expected output? Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

You might find some of these links helpful, it is hard to say: 

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
https://community.powerbi.com/t5/Quick-Measures-Gallery/Open-Tickets/m-p/409364
https://community.powerbi.com/t5/Quick-Measures-Gallery/Periodic-Billing/m-p/409365


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

To clarify, the source data is columns up to "Total Sold" only, which is a running total of total items sold. I've attached a revised screenshote below. I wanted to calculate the actual sales per period which can be generated by the difference between each period

 

For example, for item V0000100001, between 3/31/2016 and 6/30/2016, actual sales were 44.

v1.png

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.