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.
Hello Gurus,
What is a simple way to add a budget to your calculation?
Scenario,
I have a budget, lets just say 20million, and I want calculate Actuals to Budget. Throughout the year, there will be new projects added and completed but the Budget will also remain at 20 million. I want to show the remaining budget as we go. What is the best way to add the budget amount for these calculations? Is there a measure I can set for the budget amount? I think that would be the easiest way.
Solved! Go to Solution.
Hi @punksterz626 ,
Thank you @Dangar332 for your prompt reply, I have created a data example for you to help you with your problem. You can follow the steps below:
Data Example:
1. Add a DateTable and create a relationship with the FactTable.
DateTable =
ADDCOLUMNS (
CALENDAR ( DATE ( 2023, 10, 1 ), DATE ( 2024, 4, 1 ) ),
"year", YEAR ( [Date] )
)
2. Add a measure and put it into the card.
RemainingBudget =
VAR BudgetAmount = 20000000
RETURN
BudgetAmount - SUM('FactTable'[Amount])
Fianl output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @punksterz626 ,
Thank you @Dangar332 for your prompt reply, I have created a data example for you to help you with your problem. You can follow the steps below:
Data Example:
1. Add a DateTable and create a relationship with the FactTable.
DateTable =
ADDCOLUMNS (
CALENDAR ( DATE ( 2023, 10, 1 ), DATE ( 2024, 4, 1 ) ),
"year", YEAR ( [Date] )
)
2. Add a measure and put it into the card.
RemainingBudget =
VAR BudgetAmount = 20000000
RETURN
BudgetAmount - SUM('FactTable'[Amount])
Fianl output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous I'll look into the provided solution and report back. Thank you for your assistance.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |