Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |