Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I have two problems with the partial sums in a pivot table i am working on.
Firstly, in my pivot table, i'm using a grand total and 3 sub totals, however i only really need one sub total. Is there any way where i could hide or only calculate one sub total?
Secondly, when i make a selection in a listbox, the pivot table retracts and shows me the correct data relating to my selection in the list however, it changes the total to show only that of my selection. for example; i have 4 produts totalling 800, 200 each, so when i make the selection, the total will show me 200 instead of 800. How can this be solved?
I pull the data from a server, so i cannot use any macros or load script.
Thanks in advance for any help.
Best Wishes and Regards,
msadri
I have managed to partially sort out the partial sum problem by using dimensionality().
Dimensionality() returns the "level" of the cell in a pivot. Dimensionality() = 0 would be your grand total, the partial sum on the first dimension. Each subsequent level would be higher.
if(Dimensionality()>0, Current Expression)
That way, for your grand total, those lines will be null. They appear as a dash by default, but you can change that on the presentation tab.
Hi,
This is a sample i obtained. http://community.qlik.com/members/msadrikhcb/files/totals-problem.qvw.aspx
I only need the total of functions of process 1 and the the grand total.
also, choosing a process from the listbox changes the grand total and thus the Agg.
Please help.
many thanks
I am also having the exact same problem! Please someone help us....
I have managed to partially sort out the partial sum problem by using dimensionality().
Dimensionality() returns the "level" of the cell in a pivot. Dimensionality() = 0 would be your grand total, the partial sum on the first dimension. Each subsequent level would be higher.
if(Dimensionality()>0, Current Expression)
That way, for your grand total, those lines will be null. They appear as a dash by default, but you can change that on the presentation tab.