Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi All,
I have an issue I could use some help with. I need to create a running total measure instead of the below.
Where that has +'s and -'s for each month, this data isn't really totaled up so that it makes sense looking in the future.
Where I have this:
Current Month:
Current Inventory: 10
Ins: 5
Outs: 6
Final Inventory : 9
Next Month:
Current Inventory: 0
Ins: 0
Outs: 7
Final Inventory : -7
I'd like this:
Current Month:
Current Inventory: 10
Ins: 5
Outs: 6
Final Inventory : 9
Next Month:
Current Inventory: 9
Ins: 0
Outs: 7
Final Inventory : 2
Thanks!
Solved! Go to Solution.
Try Like this . Adding Inventory from day one. I have used the same table. Use appropriate tables
Inventory till date =
Var _min_date_for_inventory = CALCULATE(maxx(all('Date'[Date Filer]),'Date'[Date Filer]))
Var _Todays_date=CALCULATE(maxx(ALLSELECTED('Date'[Date Filer]),'Date'[Date Filer]))
Var _inventory= CALCULATE(sum(Sales[Sales Amount]),Sales[Sales Date]<=_min_date_for_inventory)
Var Sale_till_tody =CALCULATE(sum(Sales[Sales Amount]),filter(sales,Sales[Sales Date]<=maxx(Sales,Sales[Sales Date].[Date])))
Var purchase_till_tody =CALCULATE(sum(Sales[Sales Amount]),filter(sales,Sales[Sales Date]<=maxx(Sales,Sales[Sales Date].[Date])))
return
_inventory+Sale_till_tody-purchase_till_tody
Try Like this . Adding Inventory from day one. I have used the same table. Use appropriate tables
Inventory till date =
Var _min_date_for_inventory = CALCULATE(maxx(all('Date'[Date Filer]),'Date'[Date Filer]))
Var _Todays_date=CALCULATE(maxx(ALLSELECTED('Date'[Date Filer]),'Date'[Date Filer]))
Var _inventory= CALCULATE(sum(Sales[Sales Amount]),Sales[Sales Date]<=_min_date_for_inventory)
Var Sale_till_tody =CALCULATE(sum(Sales[Sales Amount]),filter(sales,Sales[Sales Date]<=maxx(Sales,Sales[Sales Date].[Date])))
Var purchase_till_tody =CALCULATE(sum(Sales[Sales Amount]),filter(sales,Sales[Sales Date]<=maxx(Sales,Sales[Sales Date].[Date])))
return
_inventory+Sale_till_tody-purchase_till_tody
Hi,
Share the link from where i can download your PBI file.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 41 | |
| 39 | |
| 21 | |
| 20 |
| User | Count |
|---|---|
| 148 | |
| 110 | |
| 63 | |
| 37 | |
| 35 |