The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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
User | Count |
---|---|
58 | |
56 | |
53 | |
49 | |
32 |
User | Count |
---|---|
172 | |
89 | |
70 | |
46 | |
45 |