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: 
kiranpatil123
Contributor III
Contributor III

horizontal total in Pivot Table Qikview

Hi All , 

UnitCount of ProductCount of ArticleCount of MaterialTotal
A101100111
B202200222
c303300333
D144400418
E185500523
Total921515001607

 

I have above Table . I need horizontal Total ( Colored in green ) . 

Help me with Expression using rangesum or Secondary Dimesnionality or any other way .

Note that Count of Product , Article ,Material are 3 different expression 

 

1 Solution

Accepted Solutions
sunilpaul
Contributor II
Contributor II

Hi,

use the following expression as additional Measure :
= Sum([Count of Product]) + Sum([Count of Article]) + Sum([Count of Material])
* replace Count of Product , Article ,Material with their expression in above expression.

Regards

View solution in original post

4 Replies
sunilpaul
Contributor II
Contributor II

Hi,

use the following expression as additional Measure :
= Sum([Count of Product]) + Sum([Count of Article]) + Sum([Count of Material])
* replace Count of Product , Article ,Material with their expression in above expression.

Regards
Frank_Hartmann
Master II
Master II

Add a fourth expression:

Column(1)+Column(2)+Column(3)

kiranpatil123
Contributor III
Contributor III
Author

Thanks SunilPaul

That's Simple

I think i over thought too much 🙂

sunilpaul
Contributor II
Contributor II

Happens 🙂