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: 
vishsaggi
Champion III
Champion III

Pivot table totals after every two rows?

Hello All,

Can you please suggest? I need the subtotals in pivot table.

Attached the file.

12 Replies
sunny_talwar

May be use the Macro to make it 0 width?

sunny_talwar

Something like this:

SUB Squeeze

CALL HideColumn("CH01", 1)

END SUB

PRIVATE SUB HideColumn(ch, n)

SET ch = ActiveDocument.GetSheetObject(ch)

ch.SetPixWidth (n-1), 2

END SUB

vishsaggi
Champion III
Champion III
Author

This helped. Thanks very much. Probably i will go with my expression which is pretty suffice my requirement.
Thanks a lot Sunny for your time. Appreciate your time.

V.