Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'am facing an issue with subtotal. I have a pivot chart with 13 dimensions and 2 expressions (Z, Y). I'd like display in sub total for dimensions J and L a sum or avg. (first snaphot below)
I manage to display this only if i tick the "Show partial sum" for J and L. But the formatting pivot has changed.(see second snapshot below) .
So i want only subtotal for dimensions A and B, but display formula for dimensions J and L. Is there a way to achive this without having to put J and L in expressions.
Regards
This is what I implied
Add those field into expression as
Sum(Field1)
Yes, there is no way except put these fields as expressions as proposed by Mindaugas.
But, i have a new issue. I can't understand because for me i thought that very manageable. I want as subtotal the number of months in the chart below (and in the the attached file). I have tried with count, RowNo(),... and as a result i have 7 so, it's should be the result for : Count(TOTAL Month) and not for Count(Month) which should return 4 for Russia and 3 for UK .
May be:
Count(Distinct Month)
Don't works, returns 4 .
Try like
= Sum(Aggr(Count(Distinct Month), Country))
Don't works, subtotal stays at 7 .
Can you share a sample app with the data if possible?
Qvw sample is already in attached file in one of my previous post.
May be -
Count(Total<Country> Distinct Month)