Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.76 KB

Excel.Range.Insert.md

File metadata and controls

58 lines (37 loc) · 1.76 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.Insert method (Excel)
vbaxl10.chm144149
vbaxl10.chm144149
Excel.Range.Insert
e612bbc8-3942-3349-f157-c0459805794a
05/11/2019
medium

Range.Insert method (Excel)

Inserts a cell or a range of cells into the worksheet or macro sheet and shifts other cells away to make space.

Syntax

expression.Insert (Shift, CopyOrigin)

expression A variable that represents a Range object.

Parameters

Name Required/Optional Data type Description
Shift Optional Variant Specifies which way to shift the cells. Can be one of the following XlInsertShiftDirection constants: xlShiftToRight or xlShiftDown. If this argument is omitted, Microsoft Excel decides based on the shape of the range.
CopyOrigin Optional Variant The copy origin; that is, from where to copy the format for inserted cells. Can be one of the following XlInsertFormatOrigin constants: xlFormatFromLeftOrAbove (default) or xlFormatFromRightOrBelow.

Return value

Variant

Remarks

There is no value for CopyOrigin that is equivalent to Clear Formatting when inserting cells interactively in Excel. To achieve this, use the ClearFormats method.

With Range("B2:E5")
    .Insert xlShiftDown
    .ClearFormats
End With

Example

This example inserts a row above row 2, copying the format from the row below (row 3) instead of from the header row.

Range("2:2").Insert CopyOrigin:=xlFormatFromRightOrBelow

[!includeSupport and feedback]