Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Only Partial Sum on Pivot Table

How can I show only partial sum, without a total sum on pivot table?

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

= if(RowNo() = 0 or IsNull(RowNo()),'', Sum(Sales))

In Presentation tab, Labels for Totals  = ''

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI

Try like this

= if(RowNo() = 0 or IsNull(RowNo()),'', Sum(Sales))

In Presentation tab, Labels for Totals  = ''

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
farolito20
Contributor III
Contributor III
Author

Thanks