NamedRange.Group Method
When the NamedRange control represents a single cell in a PivotTable field’s data range, the Group method performs numeric or date-based grouping in that field.
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Parameters
- Start
- Type: System.Object
The first value to be grouped. If this argument is omitted or true, the first value in the field is used.
- End
- Type: System.Object
The last value to be grouped. If this argument is omitted or true, the last value in the field is used.
- By
- Type: System.Object
If the field is numeric, this argument specifies the size of each group. If the field is a date, this argument specifies the number of days in each group if element 4 in the Periods array is true and all the other elements are false. Otherwise, this argument is ignored. If this argument is omitted, Microsoft Office Excel automatically chooses a default group size.
- Periods
- Type: System.Object
An array of seven Boolean values that specify the period for the group, as shown:
1 - Seconds
2 - Minutes
3 - Hours
4 - Days
5 - Months
6 - Quarters
7 - Years
If an element in the array is true, a group is created for the corresponding time; if the element is false, no group is created. If the field is not a date field, this argument is ignored.
The NamedRange control must be a single cell in the PivotTable field’s data range. If you attempt to apply this method to more than one cell, it fails (without displaying an error message).
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.
The following code example creates a PivotTable report and a NamedRange inside the area of the PivotTable report. It then uses the PivotTable, LocationInTable, PivotCell, PivotItem, and PivotField properties to display information about the placement of the NamedRange within the PivotTable report. The example also uses the Group method to perform numeric grouping based on the first value in the field.
This example is for a document-level customization.
private void DisplayPivotTableInformation() { // Specify values for the PivotTable. this.Range["A1", missing].Value2 = "Date"; this.Range["A2", missing].Value2 = "March 1"; this.Range["A3", missing].Value2 = "March 8"; this.Range["A4", missing].Value2 = "March 15"; this.Range["B1", missing].Value2 = "Customer"; this.Range["B2", missing].Value2 = "Smith"; this.Range["B3", missing].Value2 = "Jones"; this.Range["B4", missing].Value2 = "James"; this.Range["C1", missing].Value2 = "Sales"; this.Range["C2", missing].Value2 = "23"; this.Range["C3", missing].Value2 = "17"; this.Range["C4", missing].Value2 = "39"; // Create and populate the PivotTable. Excel.PivotTable table1 = this.PivotTableWizard( Excel.XlPivotTableSourceType.xlDatabase, this.Range["A1", "C4"], this.Range["A10", missing], "Sales Table", false, false, true, false, missing, missing, false, false, Excel.XlOrder.xlDownThenOver, missing, missing, missing); Excel.PivotField customerField = (Excel.PivotField)table1.PivotFields("Customer"); customerField.Orientation = Excel.XlPivotFieldOrientation.xlRowField; customerField.Position = 1; Excel.PivotField dateField = (Excel.PivotField)table1.PivotFields("Date"); dateField.Orientation = Excel.XlPivotFieldOrientation.xlColumnField; dateField.Position = 1; table1.AddDataField(table1.PivotFields("Sales"), "Sales Summary", Excel.XlConsolidationFunction.xlSum); // Create a NamedRange in the PivotTable and display the // location. Microsoft.Office.Tools.Excel.NamedRange namedRange1 = this.Controls.AddNamedRange( this.Range["B11", missing], "namedRange1"); namedRange1.Select(); MessageBox.Show("The NamedRange is in the PivotTable report '" + namedRange1.PivotTable.Name + "' at the location '" + namedRange1.LocationInTable.ToString() + "'."); MessageBox.Show("The NamedRange has a PivotCell type of: " + namedRange1.PivotCell.PivotCellType.ToString()); MessageBox.Show("The NamedRange is in the PivotTable field: " + namedRange1.PivotField.Name); MessageBox.Show("The NamedRange is in the PivotTable item: " + namedRange1.PivotItem.Name); namedRange1.Group(true, missing, missing, missing); }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.