There should be something simple like
=sum([Value])/sum([Value]) in (Report)
Calculation contexts for breaks function slightly different to an unbroken report (as you’ve seen) but there are extras like In Report and In Break that can help you.
MarkP - - - sounds good but it’s not working for me …
I was able to get the total total within the break section like this (4,444):
=Sum(Count([In School (4 years)].[Student_Id])) ForAll ([vMinority])
But then I tried your suggestion by saying
=Sum(Count([In School (4 years)].[Student_Id])) / sum(Count([In School (4 years)].[Student_Id])) in (Report)
but it says “Missing object identifier in ‘Report’ at position 85”
I also just tried dividing the row value by the 4,444 formula, but it all came out 100%
=Sum(Count([In School (4 years)].[Student_Id])) ForAll / Sum(Count([In School (4 years)].[Student_Id])) ForAll
I found an answer on SAP Community forum, but I would still like to understand your suggestion (and my syntax error).
What worked for me was to create a variable for the count and a variable for the % of the grand total …
=Percentage([vBreak Total (Minority)]) In ([vMinority])