The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello, I would need some help in a formula to put in PowerBI to calculate the burn rate, but for it to be compounding over a monthly period.
I have a couple of values that are being used. Monthly Actuals, Month, and Monthly Burn Rate.
Monthly Actuals = Amount of FTE burned in a month
Months = months throughout the year
Monthly Burn rate = Monthly Actuals/12 (helps get the monthly FTE burn rate)
I would like this burn rate to be coumpouded from the previous months burn rate. For example if January had monthly actuals of 140FTE, this / 12 = 12. Then February has a monthly actual of 160FTE, dividing this by 12 would equal 13.33, the burn rate would then be (12+13.33) = 25.33.
Hi @Kalvin11,
To calculate the compounded burn rate for each month, you can use the following formula in PowerBI:
Cumulative Burn Rate =
VAR MonthlyActuals = [Monthly Actuals]
VAR BurnRate = MonthlyActuals/12
RETURN
IF (
ISBLANK ( MonthlyActuals ),
BLANK (),
CALCULATE (
SUMX (
FILTER (
ADDCOLUMNS (
GENERATESERIES ( 1, MONTH ( TODAY () ) ),
"MonthNum", [Value]
),
[MonthNum] <= MONTH ( [Month] )
),
[BurnRate]
),
FILTER (
ALLSELECTED ( Table1 ),
[Month] <= MAX ( Table1[Month] )
)
)
)
This formula uses a combination of variables, filters, and functions to calculate the cumulative burn rate for each month. Here's a breakdown of how it works:
Note that this formula assumes that your data is stored in a table called "Table1" and that your columns are named "Monthly Actuals" and "Month". If your column names are different, you will need to adjust the formula accordingly.
Best regards,
Isaac Chavarria
If this post helps, then please consider Accepting it as the solution and giving Kudos to help the other members find it more quickly.
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |