Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
Can you please suggest? I need the subtotals in pivot table.
Attached the file.
May be use the Macro to make it 0 width?
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
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.