Hello Kevin,
Subtotal is controlled by the PviotField's SubTotals proeprty. The document is,
http://msdn.microsoft.com/en-us/library/bb209315.aspx
So if you want to show SUM subtotals for a PivotaField, you can use some codes similar as, (you may need to align it to real C# codes)
ActiveSheet.PivotTables["Pivottable1"].PivotFields["[Sales Date].[Date]"].Subtotals[2] = true.
Ji Zhou
MSDN Subscriber Support in Forum
If you have any feedback on our support, please contact msdnmg@microsoft.com
Please remember to mark the replies as answers if they help and unmark them if they provide no help.