Syntax

expression.Ungroup

expression A variable that represents a Range object.

Return Value
Variant

Remarks

If the active cell is in a field header of a parent field, all the groups in that field are ungrouped and the field is removed from the PivotTable report. When the last group in a parent field is ungrouped, the entire field is removed from the report.

Example

This example ungroups the ORDER_DATE field.

Visual Basic for Applications
Set pvtTable = Worksheets("Sheet1").Range("A3").PivotTable Set groupRange = pvtTable.PivotFields("ORDER_DATE").DataRange groupRange.Cells(1).Ungroup

See also: