Cut Method

Cuts the specified range to the Clipboard or pastes it into a specified destination.

expression.Cut(Destination)

Example

This example cuts the range A1:G37 on the datasheet and places it on the Clipboard.

  Set mySheet = myChart.Application.DataSheet
mySheet.Range("A1:G37").Cut

See Also