Reputation: 211
I am trying to subtotal my years. When I do so the subtotal is a crazy #.
test = [MT]/[FA]
Formula for Cells = ((SUM([test]))*12)*(SUM([FA]) / TOTAL(SUM([FA])))
Formula is calculating using pane down
Upvotes: 0
Views: 526
Reputation: 1099
Replace your test
calculation as :
SUM( [MT] )/SUM( [Faccounts] )
Your window calculation will error out.
Materialise your main calculation
as below :
(([test])*12)*(SUM([Faccounts]) / TOTAL(SUM([Faccounts])))
You will get correct result . Somehow I am unable to upload the workbook .
Upvotes: 1