Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
arusanah
Creator II
Creator II

Pivot Report help

This  is the out put from one of the pivot reports . My Requirement was to show Partial sum at Discount Product level . so in presentation level i checked the show Partial sum . But then it shows partial sum for PDG SAP column too . which is nothing but discounts being pulled from SAP.

Discount ProductPDG CodeBucket RevenuePDG SAPPDG QualifyPDG Difference
AAA185,756.10-31.68%--
AAM193,821.45-30.30%--
ATotal379,577.55-30.89%--
BAM2,757,412.89-23.19%--
BTotal2,757,412.89-23.19%--
CBF189.28-27.50%--
CTotal189.28-27.50%--
DBG226,291.39-19.32%--
DTotal226,291.39-19.32%--
EAA971,635.54-25.92%--
ETotal971,635.54-25.92%--
FAE156,382.22-24.96%--
FTotal156,382.22-24.96%--
   
GAJ159,928.27-14.43%--
GAI155,123.49-14.89%--
GAL390.72-7.50%-15.00%7.50%
GTotal315,442.48-14.61%--

if we take a closer look at total  it averages out the PDG SAP Column. which we don't want . so is there a way we can leave this column without  performing aggergation on it?


2 Replies
swuehl
MVP
MVP

You can try dimensionality() function or for a pivoted column secondarydimensionality(), maybe like

=if(dimensionality()>1, YourExpression)

Replace YourExpression with the PDG SAP expression.

arusanah
Creator II
Creator II
Author

thanks Swuel!!!