Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 835 Bytes

Excel.Range.Summary.md

File metadata and controls

39 lines (27 loc) · 835 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.Summary property (Excel)
vbaxl10.chm144207
vbaxl10.chm144207
Excel.Range.Summary
f9e18651-20b6-1094-2ee5-7cd23559498e
05/11/2019
medium

Range.Summary property (Excel)

True if the range is an outlining summary row or column. The range should be a row or a column. Read-only Variant.

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.

With Worksheets("Sheet1").Rows(4) 
 If .Summary = True Then 
 .Font.Bold = True 
 .Font.Italic = True 
 End If 
End With

[!includeSupport and feedback]