ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Using C# .setSubtotals (https://www.excelbanter.com/excel-programming/449103-using-c-setsubtotals.html)

[email protected]

Using C# .setSubtotals
 
Hi There,

I am struggle with .set_SubTotals using C#:

I tried:

object[] noSub = { false, false, false, false, false, false, false, false, false, false, false, false };

Excel.PivotTable pt = XlApp.ActiveSheet.PivotTable("Test");
pt.PivotFields("Datestamp").set_Subtotals(Type.Mis sing, noSub);

and
pt.PivotFields("Datestamp").set_Subtotals(noSub, Type.Missing);

and

for (int index = 1; index <= 12; index++)
{
pt.PivotFields("Test").set_Subtotals(index, false);
}

In all three cases, the error message popped up and saying "'System.__ComObject' does not contain a definition for 'set_Subtotals'".

I am new to Excel programing and appreciate your help.

Hugh

[email protected]

Using C# .setSubtotals
 
More info:

If "Subtotals" instead of "set_Subtotals" is used, the error message is "Erroe while invoking Subtotals".

Your help is very much appreciated.


All times are GMT +1. The time now is 01:19 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com