Calculating percentage ytd actual to budget

AronEpstein

New Member
Joined
Feb 6, 2012
Messages
5
i have a powerpivot with data as follows
Cost CenterExpense TypeMonthAmount
EastAdminBudget10000
EastAdminJanuary500
EastAdminFebruary650

<TBODY>
</TBODY>








I want to calculate the total ytd (1150) as a percentage of the budget (10,000).
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
try this

Excel 2003
ABCDE
1Cost CenterExpense TypeMonthAmountPercentage
2EastAdminBudget1000090%
3EastAdminJanuary5004%
4EastAdminFebruary6506%
Sheet7
Cell Formulas
RangeFormula
E2=D2/SUM($D$2:$D$4)
E3=D3/SUM($D$2:$D$4)
E4=D4/SUM($D$2:$D$4)
 
Upvote 0
Aron how about two simple CALCULATE measures and then a ratio measure?

[Budget Measure] =
CALCULATE(SUM(TableName[Amount]), TableName[Month] = "Budget")

[Actuals Measure] =
CALCULATE(SUM(TableName[Amount]), TableName[Month] <> "Budget")

[Ratio] =
[Actuals Measure] / [Budget Measure]

There are many ways in which this approach is incomplete, but depending on your needs this might be perfect.
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top