Forum Discussion
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!
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] - aHere is the result.
Best Regards,
Eads
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
5 Replies
- Greg_DecklerCommunity Champion
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-TITHW/m-p/434008
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- nates05Frequent Visitor
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.
- v-eachen-msftCommunity 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] - aHere is the result.
Best Regards,
Eads
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- nates05Frequent Visitor
v-eachen-msft that worked! thank you!
- nates05Frequent Visitor
Hi, would this have an M code equivalent?
I realized I need to insert these columns in power query itself.
Thanks!