In This Topic
Moves data from one range to another.
Syntax
'Declaration
Public Shared Sub MoveTo( _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal sourceColumn As Integer, _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal destColumn As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer, _
ByVal As CopyToOption _
)
'Usage
Dim source As Worksheet
Dim sourceRow As Integer
Dim sourceColumn As Integer
Dim dest As Worksheet
Dim destRow As Integer
Dim destColumn As Integer
Dim rowCount As Integer
Dim columnCount As Integer
Dim copyOption As CopyToOption
Workbook.MoveTo(source, sourceRow, sourceColumn, dest, destRow, destColumn, rowCount, columnCount, copyOption)
Parameters
- source
- The source sheet.
- sourceRow
- The source row.
- sourceColumn
- The source column.
- dest
- The target sheet.
- destRow
- The target row.
- destColumn
- The target column.
- rowCount
- The row count.
- columnCount
- The column count.
- copyOption
- The copy option.
See Also