Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi experts
i hav attached the sample qvw
i have a straight table with some dimensions as Branch, Lead BDM and some expressions(which is calculated using conditional formulas). all the expressions do not have sum() calculation. so i have made a total of the rows and that total is displayed on top.
Now, i need to make another pivot table which should display only the total of the dimensions named Lead BDM.
the problem is the calculation of expressions depends on the particular branch. so if i hide the branch column in pivot table, some values are showing null
for ex.
i have lead BDM names as
Andy,
Antony,
Nick,
Peter,
Chris,
David, etc....
Now i have to make a table showing the totals alone.
Total: Lead BDM Antony,
Total: Lead BDM Nick, etc... with all the same expressions (total alone).
how can i make it.
Please help me in this regard
Remove the dimension and then you can use the Aggr function in combination with sum like this:
=Sum(Aggr(YourExpression),[Branch Name]))
See also attached
Your file seems to be broken.
Post it again
Remove the dimension and then you can use the Aggr function in combination with sum like this:
=Sum(Aggr(YourExpression),[Branch Name]))
See also attached
More background on the Aggr function for example here:
Hi
try this expression
=Sum(Aggr(Your Expression),[Branch Name]))
hi Piet Hein,
its working
thanks a lot