REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

We can use VBA to Cut a Range to another Paste into Clipboard or other location or range. Range.Cut method will cut and it will save the data in the Clipboard then you can select any range and paste. You can also specify the destination range while cutting a range.

VBA Cut Method Excel Range Object

VBA to Cut Range in Excel – Syntax

Here is the syntax to cut a range using VBA. Here, Destination is the range which you want to be copied. This is optional, if you are not providing the destination range, this will copy to the Clipboard.

Range(“YourRange”).Cut(

[Destination])

VBA to Cut Range in Excel – Examples

Here is the simple example to cut and copy a paste. In this example , we cut the data at Range “A2:D10” and copy to the Clipboard and then Pasting in the Range “E2”.

Sub Cut_Range_To_Clipboard()
Range("A2:D10").Cut 'This will cut the source range and copy the Range "A2:D10" data into Clipboard

'Now you can select any range and paste there
Range("E2").Select
ActiveSheet.Paste

End Sub

VBA to Cut and paste the Range to Destination in Excel – Example

Here is the another example to cut and copy a range to specific range and directly paste into another location of the worksheet. In this example , we cut the range “A2:D10” and pasting at Range “E2”.

Sub Cut_Range_To_Destination_Range()
Range("A2:D10").Copy Range("E2")

'Or you can write as Range("A2:D10").Cut Destination:=Range("E2")

End Sub

VBA to Cut Range in Excel – Execution Instructions

You can follow the below steps to execute the macro to cut and paste a range using VBA.

  1. Open an Excel Workbook from your start menu or type Excel in your run command
  2. Enter some data in any cells in range “A2:D10″ to test this macro.
  3. Press Alt+F11 to Open VBA Editor or you can go to Developer Tab from Excel Ribbon and click on the Visual Basic Command to launch the VBA Editor
  4. Insert a Module from Insert Menu of VBA
  5. Copy the above code (to cut a range using VBA) and Paste in the code window(VBA Editor)
  6. Save the file as Macro Enabled Workbook (i.e; .xlsm file format)
  7. Press ‘F5′ to run it or Keep Pressing ‘F8′ to debug the code line by line.

Now you can observe that the Range A2:D10 is cleared and pasted in the specific range. This will cut the range including its formats and other elements in that particular range.

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates