Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
fallenangel6
Creator
Creator

Pivot table totals

 

hi all,

i want pivot table total for all measures except a measure which has text in it.  below column is present in my table and i dont want any total for this measure.

 

invoice.JPG

 

 

4 Replies
dapostolopoylos
Creator III
Creator III

Why don't you move this column to the dimension part of your chart?
It is not a measure, why bother find ways to supress totals for this column?

Father/Husband/BI Developer
sunny_talwar

May be do this

If(Dimensionality() = 0, Null(), <YourExpression>)
fallenangel6
Creator
Creator
Author

this is displayed using the difference of two measures ie sum(grn qty)-sum(po qty).
fallenangel6
Creator
Creator
Author

it doesnt work. this is my expression.

If(Sum(INVOICE_QUANTITY)=0,'No Invoice',
If(Sum(INVOICE_QUANTITY)<Sum(GRN_QUANTITY),'Partial Invoice',
If(Sum(INVOICE_QUANTITY)=Sum(GRN_QUANTITY),'Full Invoice',
If(Sum(INVOICE_QUANTITY)>Sum(GRN_QUANTITY),'Higher Invoice'))))