Expand Minimize
0 out of 1 rated this helpful - Rate this topic

Range.IndentLevel Property (Excel)

Published: July 16, 2012

Returns or sets a Variant value that represents the indent level for the cell or range. Can be an integer from 0 to 15.

expression .IndentLevel

expression A variable that represents a Range object.

Using this property to set the indent level to a number less than 0 (zero) or greater than 15 causes an error.

This example increases the indent level to 15 in cell A10.

With Range("A10") 
 .IndentLevel = 15 
End With
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.