On the Dashboard tab, under the "Allocation Target", my pivot table does not sum up the total of the "Target - Actual". I think this # would provide valuable info in the total amount your portfolio is out of "allocation". Correct? if so, how would I get that field to auto sum? I apologize in advance as I am pretty good with excel general but weak on pivot Tables for the moment.
Comments
Target - Actual at all level is always 0.
Lets say you 100k invested and have following target:
USA: 20%
Canada: 80%
If your actuals are:
USA: 30%
Canada 70%
Then Target - Actual would be:
USA: 20%-30% = -10%
Canada: 80% - 70% = +10%
Total -10% + 10% = 0%
I showed above in %, but same results if you would use amounts.
Probably you are looking for a sum of values > 0, as that would give you idea of how much money you should "move". Are you comfortable adding DAX measures? If so, I can post here calculation that you should add, but for that let me know your Excel version.
1. Go to PowerPivot menu -> Measures button -> Manage Measures.
2. Select measure "Allocation Target - Actual", click Edit.
3. Replace current formula:
=ROUND(Report[Allocation Target Value] - Report[Total Value], 2)
with new formula: 4. Click "OK", then "Close".
If you do not have full PowerPivot support (no PowerPivot menu), then you cannot change that formula, sorry.