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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello everyone,
I need a little help for a capacity sheet in Power BI:
For example I have for one month the following columns:
Requirement previous month (Measure), Requirement, cumulative requirement (Requirement + Rerequirement previous month) (Measure), free capacity and result (cumulative requirement - free capacity) (Measure) .
So if there is not enough free capacity in a month we put the result in the next month measure like this:
Solved! Go to Solution.
@OS1979 , If you want to haveexcel like recursive calculation then it is not possible
A2= A1 + C1
A3= A2 + C2
You have to think cumulative like inventory calc
Inventory / OnHand
CALCULATE(firstnonblankvalue('Date'[Month]),sum(Table[Intial Inventory]),all('Date')) + CALCULATE(SUM(Table[Ordered]),filter(date,date[date] <=maxx(date,date[date]))) - CALCULATE(SUM(Table[Sold]),filter(date,date[date] <=maxx(date,date[date])))
Power BI Inventory On Hand
Power BI Inventory On Hand: https://youtu.be/nKbJ9Cpb-Aw
... and it helped me a lot : -) . I have to rethink my matrix but at the end I thing I have a good solution to present.
Thank you very much
Good morning and thank you very much for this idea. I will try it 🙂
@OS1979 , If you want to haveexcel like recursive calculation then it is not possible
A2= A1 + C1
A3= A2 + C2
You have to think cumulative like inventory calc
Inventory / OnHand
CALCULATE(firstnonblankvalue('Date'[Month]),sum(Table[Intial Inventory]),all('Date')) + CALCULATE(SUM(Table[Ordered]),filter(date,date[date] <=maxx(date,date[date]))) - CALCULATE(SUM(Table[Sold]),filter(date,date[date] <=maxx(date,date[date])))
Power BI Inventory On Hand
Power BI Inventory On Hand: https://youtu.be/nKbJ9Cpb-Aw