Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
dafnis14
Specialist
Specialist

Dimensionality for custom subtotal in pivot table

Hi All,

I am trying to modify a subtotal using Dimensioanlity:

In case a dimension has the value 3, to sum items from dimension 2 and 3, which are flagged in the script.

=if(Dimensionality() =2 and Balance_TotalCode =3, sum({<Balance_Flag_TOTALCOMMANDEQU={'1'}>}Balance_Amount),sum(Balance_Amount))


In the data:It should sum the items in orange (Balance_TotalCode =2) and green (Balance_TotalCode =3)

But It only sums the items in green.

The row in yellow represents the desired location with the wrong result.

DimensionalityIssue.png


Will appreciate assistance!


Thanks!



1 Solution

Accepted Solutions
sunny_talwar

Try with Total qualifier

=If(Dimensionality() =2 and Balance_TotalCode =3, Sum(TOTAL {<Balance_Flag_TOTALCOMMANDEQU = {'1'}>} Balance_Amount), Sum(Balance_Amount))

View solution in original post

3 Replies
sunny_talwar

Try with Total qualifier

=If(Dimensionality() =2 and Balance_TotalCode =3, Sum(TOTAL {<Balance_Flag_TOTALCOMMANDEQU = {'1'}>} Balance_Amount), Sum(Balance_Amount))

dafnis14
Specialist
Specialist
Author

Kudos Sunny!

As usual, your help is tremendous!

maniram23
Creator II
Creator II

Hi Experts,

 I am new to learn this topic,

can you please share the sample QVW file.