Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Everyone,
I am struggling trying to Convert the following formula to DAX measure. I have no clue how to do it.
Column R = Available FTE, but just I need the orange highlighted cell.
Incremental = Actual FTE - Actual FTE Previous Week
Any help please?
@ElenaCHR , Power bi can not use the last row running column in the calculation ( I can not say the new value of the last row, last row value is what, when I begun). So these need to be framed using original values.
example inventory, cumulative has been used
Inventory / OnHand
[Intial Inventory] + CALCULATE(SUM(Table[Ordered]),filter(date,date[date] <=maxx(date,date[date]))) - CALCULATE(SUM(Table[Sold]),filter(date,date[date] <=maxx(date,date[date])))
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |