Syntax

expression.Summary

expression A variable that represents a Range object.

Example

This example formats row four on Sheet1 as bold and italic if it's an outlining summary column.

Visual Basic for Applications
With Worksheets("Sheet1").Rows(4) If .Summary = True Then .Font.Bold = True .Font.Italic = True End If End With
Detect summary column of outline. how can I tell if a row has summarized data summary summary property

See also: