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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

Pivot table total

Hi Experts,

I wanted to remove particular amount from Total in pivot table;

Attached my Qvw and requirement.

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

If(RowNo() = 0, sum({<[Standard.Sub-Item1]-={'Off-balance sheet securitization exposures'}>}[Standard.PQ 2]), sum([Standard.PQ 2]))

Regards,

Jagan.

View solution in original post

7 Replies
kristoferahlin
Partner - Contributor III
Partner - Contributor III

Hi Priya,

Please check if the attached solution meets your requirements.

Regards,

Kristofer

jpenuliar
Partner - Specialist III
Partner - Specialist III

use this expression:

sum({<[Standard.Sub-Item1]={'*'}-{'Off-balance sheet securitization exposures'}>}[Standard.PQ 2])

jsanchezh
Partner - Creator
Partner - Creator

try with this expression:

     sum({<[Standard.Sub-Item1]-={'Off-balance sheet securitization exposures'}>}[Standard.PQ 2])

Kind regards

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

If(RowNo() = 0, sum({<[Standard.Sub-Item1]-={'Off-balance sheet securitization exposures'}>}[Standard.PQ 2]), sum([Standard.PQ 2]))

Regards,

Jagan.

priyarane
Specialist
Specialist
Author

Hi Jagan,

Can you please brief of the expression,

what is Rowno() here.

jsanchezh
Partner - Creator
Partner - Creator

I think Rowno()=0 is the total line from the pivot table

jagan
Partner - Champion III
Partner - Champion III

Hi Priya,

For Total row the Rowno() returns 0, in this case we are using different expression.

Regards,

jagan.