InsertRange

Insert a range into one or all sheets.

Overloads

Overload Name Description
General Insert cells.


General

Insert cells.

Argument Description
SpecifySheetBy Select how to specify which worksheet to select while the method is being executed.
Specify one of the following values or an arbitrary value: <blank>SheetNameSheetNumberAllSheets
SheetSpec Specify the sheet-name or sheet-number, depending on SpecifySheetBy. If SpecifySheetBy is AllSheets then SheetSpec can be left empty.
Address The address of a range to select for the execution of the method.
CellByCell Whether to execute the method on a cell-by-cell basis, or on the range specified by the address.
ReverseOrder Whether to loop through the rows and columns from highest to lowest. Only applies when CellByCell is true.
MethodCondition If the result of method-condition expression resolves to FALSE, then the method is not executed.
Specify one of the following values or an arbitrary value: <blank>FALSETRUE
CellCondition If the result of the condition expression resolves to FALSE, then the current cell is skipped.
Specify one of the following values or an arbitrary value: <blank>FALSETRUE
InsertAddress The address to insert the range at.
ShiftDirection The shift mode for the insert.
Warning: ShiftEntireRow and ShiftEntireColumn do not work correctly. Use ShiftEntireRowExcel and ShiftEntireColumnExcel to get the correct result.
ShiftEntireColumn performs the same as ShiftRight (incorrect).
ShiftEntireRow performs the same as ShiftDown (incorrect).
Using ShiftRight will move the cells to the right of any cells in the specified range to the right.
Using ShiftDown will move the cells below of any cells in the specified range down.
Using ShiftEntireColumnExcel will insert the entire column of any cells in the sprecified range.
Using ShiftEntireRowExcel will insert the entire row of any cells in the sprecified range.
Specify one of the following values or an arbitrary value: <blank>ShiftDownShiftRightShiftEntireColumnShiftEntireColumnExcelShiftEntireRowShiftEntireRowExcel