Macro to Copy and Paste from One Worksheet to Another (15 Methods)

We’ll use the following sample dataset to showcase how you can copy and paste values between worksheets.

Dataset of VBA Macro to Copy and Paste Data from One Worksheet to Another in Excel


Method 1 – Embed VBA Macro to Copy and Paste a Range of Data from One Worksheet to Another

Steps:

  • Press Alt + F11 on your keyboard or go to the Developer tab and select Visual Basic to open the Visual Basic Editor.

  • In the pop-up code window, click Insert and select Module.

  • Copy the following code and paste it into the code window.
Sub CopyPasteToAnotherSheet()
Worksheets("Dataset").Range("B2:F9").Copy Worksheets("CopyPaste").Range("B2")
End Sub

VBA Macro to Copy and Paste a Range of Data from One Worksheet to Another in Excel

This piece of code will copy the Range from B2 to F9 from the sheet named Dataset and paste it in the B2 Range in the CopyPaste sheet.

  • Press F5 on your keyboard or select Run and Run Sub/UserForm. You can also click on the small Play icon in the sub-menu bar to run the macro.

  • Here’s the result.

Result of VBA Macro to Copy and Paste a range of Data from One Worksheet to Another in Excel

Read More: Excel VBA: Copy Range to Another Workbook


Method 2 – VBA Macro to Copy and Paste Data from One Active Worksheet to Another in Excel

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • In the code window, copy the following code and paste it.
Sub CopyPasteToAnotherActiveSheet()
    'Copy data from source sheet
    Sheets("Dataset").Range("B2:F9").Copy
    'Activate destination sheet
    Sheets("Paste").Activate
    'Select destination range
    Range("B2").Select
    'Paste in the destination
    ActiveSheet.Paste
    Application.CutCopyMode = False
End Sub

VBA Macro to Copy and Paste Data from One Active Worksheet to Another in Excel

  • Run the code to get the result.

Result of VBA Macro to Copy and Paste Data from One Active Worksheet to Another in Excel

  • All the data from the Dataset sheet is now copied in the Paste sheet that was active before copying the data.

Read More: How to Open Another Workbook and Copy Data with Excel VBA


Method 3 – Copy and Paste a Single Cell from One Worksheet to Another in Excel with VBA Macro

The Range sheet consists of only one value.

Dataset of VBA Macro to Copy and Paste Single Data from One Worksheet to Another in Excel

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • In the code window, copy the following code and paste it.
Sub CopyPasteSingleRangeToAnotherSheet()
Worksheets("Range").Range("B4").Copy Worksheets("CopyRange").Range("B2")
End Sub

VBA Macro to Copy and Paste Single Data from One Worksheet to Another in Excel

  • Run this piece of code.

Result of VBA Macro to Copy and Paste Single Data from One Worksheet to Another in Excel

  • That single data “Copy this Cell” in Cell B4 in the Dataset sheet is now copied in the CopyRange sheet in Cell B2.

Method 4 – Paste Copied Data from One Worksheet to Another with the PasteSpecial Method in Excel Macro

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyPasteSpecial()
    Worksheets("Dataset").Range("B2:F9").Copy
    Worksheets("PasteSpecial").Range("B2").PasteSpecial
End Sub

VBA Macro to Copy and Paste Data with PasteSpecial from One Worksheet to Another in Excel

  • Run this piece of code.

Result of VBA Macro to Copy and Paste Data with PasteSpecial from One Worksheet to Another in Excel

  • Data from the Dataset sheet is now transferred in the PasteSpecial sheet in Excel.

Method 5 – Macro to Copy and Paste Data Below the Last Cell from One Worksheet to Another in Excel

We already have some data in the Dataset sheet (shown in the introduction section). The destination sheet Last Cell also contains some values. We will copy the data in cells B5 to F9 from the Dataset sheet and paste it below the last cell of the Last Cell sheet.

Dataset of VBA Macro to Copy and Paste Data Below the Last Cell from One Worksheet to Another in Excel

 

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyPasteBelowTheLastCell()
'Set variables
Dim wsSource As Worksheet
Dim wsTarget As Worksheet
Dim iSourceLastRow As Long
Dim iTargetLastRow As Long
'Set variables for source and destination sheets
Set wsSource = Worksheets("Dataset")
Set wsTarget = Worksheets("Last Cell")
'Find last used row in the source sheet based on data in column B
iSourceLastRow = wsSource.Cells(wsSource.Rows.Count, "B").End(xlUp).Row
'Find first blank row in the destination sheet based on data in column B
'Offset property is to move the copied data 1 row down
iTargetLastRow = wsTarget.Cells(wsTarget.Rows.Count, "B").End(xlUp).Offset(1).Row
'Copy data from the source and Paste in the destination
wsSource.Range("B5:F9" & iSourceLastRow).Copy wsTarget.Range("B" & iTargetLastRow)
End Sub

VBA Macro to Copy and Paste Data Below the Last Cell from One Worksheet to Another in Excel

  • Run this code,

  • Only the selected data from the Dataset sheet is copied below the last cell in the Last Cell sheet in Excel.

Method 6 – VBA Macro to Clear a Worksheet First, then Copy and Paste to Another Worksheet

We will clear the data from the Clear Range sheet and put in the data from the Dataset sheet.

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub ClearAndCopyPasteData()
'Set variables
Dim wsSource As Worksheet
Dim wsTarget As Worksheet
Dim iSourceLastRow As Long
Dim iTargetLastRow As Long
'Set variables for source and destination sheets
Set wsSource = Worksheets("Dataset")
Set wsTarget = Worksheets("Clear Range")
'Find last used row in the source sheet based on data in column B
iSourceLastRow = wsSource.Cells(wsSource.Rows.Count, "B").End(xlUp).Row
'Find first blank row in the destination sheet based on data in column B
'Offset property is to move the copied data 1 row down
iTargetLastRow = wsTarget.Cells(wsTarget.Rows.Count, "B").End(xlUp).Offset(1).Row
'Clear data from the destination range
wsTarget.Range("B5:F9" & iTargetLastRow).ClearContents
'Copy data from the source and Paste in the destination
wsSource.Range("B5:F9" & iSourceLastRow).Copy wsTarget.Range("B5")
End Sub

VBA Macro to First Clear then Copy and Paste Data from One Worksheet to Another in Excel

  • Run this piece of code.

Result of VBA Macro to First Clear then Copy and Paste Data from One Worksheet to Another in Excel

  • The previous data in the Clear Range sheet is replaced by the data from the Dataset sheet.

Read More: Macro to Copy Data from One Workbook to Another Based on Criteria


Method 7 – Macro to Copy and Paste Data from One Worksheet to Another with the Range.Copy Function

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyWithRangeCopyFunction()
'Set variables
Dim wsSource As Worksheet
Dim wsTarget As Worksheet
'Set variables for source and destination sheets
Set wsSource = Worksheets("Dataset")
Set wsTarget = Worksheets("Copy Range")
'Copy data from the source and Paste in the destination
Call wsSource.Range("B2:F9").Copy(wsTarget.Range("B2"))
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another in Excel with Range.Copy

  • Run this piece of code.

Result of VBA Macro to Copy and Paste Data from One Worksheet to Another in Excel with Range.Copy

Read More: How to Use Excel VBA to Copy Range to Another Excel Sheet


Method 8 – Implement Macro Code to Duplicate Data from One Worksheet to Another with the USEDRANGE Property

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyWithUsedRange()
'Set variables
Dim wsSource As Worksheet
Dim wsTarget As Worksheet
'Set variables for source and destination sheets
Set wsSource = Worksheets("Dataset")
Set wsTarget = Worksheets("UsedRange")
'Copy data from the source and Paste in the destination
Call wsSource.UsedRange.Copy(wsTarget.Cells(2, 2))
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another in Excel with USEDRANGE

  • Run this piece of code.


Method 9 – VBA Macro to Copy and Paste the Selected Data from One Sheet to Another in Excel

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyPasteSelectedData()
'Set variables
Dim wsSource As Worksheet
Dim wsTarget As Worksheet
'Set variables for source and destination sheets
Set wsSource = Worksheets("Dataset")
Set wsTarget = Worksheets("Paste Selected")
'Copy data from the source
wsSource.Range("B4:F7").Copy
'Paste data in the destination
Call wsTarget.Range("B2").PasteSpecial(Paste:=xlPasteValues)
End Sub

This code will copy only the Range from B4 to F7 from the Dataset sheet and paste it in the B2 Range in the PasteSelected sheet.

VBA Macro to Copy and Paste Selected Data from One Worksheet to Another in Excel

  • Run this code.


Method 10 – Macro Code to Duplicate Data from One Worksheet to Another at the First Blank Row

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub FirstBlankCell()
Range("B2:F9", Range("B" & Rows.Count).End(xlUp)).Copy Sheet13.Range("A65536").End(xlUp)
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another at first blank row in Excel

  • Run this chunk of code.

Sheet13 was completely blank. The executed code pasted the copied data from the Dataset sheet in the very first cell in the Sheet13 sheet in Excel.


Method 11 – Embed VBA to Copy and Paste Auto-Filtered Data from One Excel Sheet to Another

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Option Explicit
Sub AutoFilter()
    Range("B4:B101").AutoFilter 1, "Dean"
    Range("B4:F9").Copy Sheet17.Range("B" & Rows.Count).End(xlUp)(2)
    Range("B4").AutoFilter
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another with autofilter in Excel

  • Run this code.


Method 12 – Paste a Row at the Bottom of a Range While Keeping the Copied Formula

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub PasteRowWithFormulaFromAbove()
    Rows(Range("B" & Rows.Count).End(xlUp).Row).Copy
    Rows(Range("B" & Rows.Count).End(xlUp).Row + 1).Insert xlDown
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another with formula in Excel

  • Run this code.

  • The last row is copied exactly as it is in the row next to it.

Method 13 – VBA to Replicate Data from One Sheet to Another Sheet in Another Open but Unsaved Workbook

We will copy the data from the Dataset sheet from the Source Workbook file and paste it into another worksheet in another workbook named Destination Workbook that is open but not saved yet.

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyOneFromAnotherNotSaved()
    Workbooks("Source Workbook").Worksheets("Dataset").Range("B2:F9").Copy Workbooks("Destination Workbook").Worksheets("Sheet1").Range("B2")
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another open but not saved workbook in Excel

  • Run this code.


Method 14 – Macro to Reproduce Data from One Sheet to Another Sheet in Another Open and Saved Workbook

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyOneFromAnotherSaved()
    Workbooks("Source Workbook.xlsm").Worksheets("Dataset").Range("B2:F9").Copy _
    Workbooks("Destination Workbook.xlsx").Worksheets("Sheet2").Range("B2")
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another open and saved workbook in Excel

  • Run this code.

Read More: How to Open All Excel Files in a Folder and Copy Data Using VBA


Method 15 – Apply VBA to Copy and Paste Data from One Worksheet to Another Worksheet in a Closed Workbook

Steps:

  • Open the Visual Basic Editor from the Developer tab and Insert a Module in the code window.
  • Copy the following code and paste it into the code window.
Sub CopyOneFromAnotherClosed()
'To open the workbook saved on your system
'change the path below according to the location of your file in your system
Workbooks.Open "D:\ExcelDemy\Excel Folder\Destination Workbook.xlsx"
'Copies data from the workbook named Source Workbook and
'Paste it to the target workbook named Destination Workbook
Workbooks("Source Workbook").Worksheets("Dataset").Range("B2:F9").Copy Workbooks("Destination Workbook").Worksheets("Sheet3").Range("B2")
'Close the target workbook after saving
Workbooks("Destination Workbook").Close SaveChanges:=True
End Sub

VBA Macro to Copy and Paste Data from One Worksheet to Another closed workbook in Excel

  • Run this code.

  • Data from the Dataset sheet in the Source Workbook is now copied in the Sheet3 sheet in the Destination Workbook.

Read More: Excel VBA to Copy Data from Another Workbook without Opening


Things to Remember

  • Methods 1 to 14 requires your workbooks to be opened. When executing the macro codes shown in those methods, don’t forget to keep both the source and destination workbooks open.
  • While your workbooks are saved, write the file name with the file type inside the code. When the workbooks are not saved, write only the file name without the type of the file. For example, if your workbook is saved, write “Destination.xlsx”, but if the workbook is not saved, write “Destination” inside the code.

Download the Workbook


Related Articles

Get FREE Advanced Excel Exercises with Solutions!
Sanjida Ahmed
Sanjida Ahmed

Sanjida Ahmed, who graduated from Daffodil International University with a degree in Software Engineering, has worked with SOFTEKO since 2021. She has written over 100 articles on Excel & VBA and, since 2022, has worked as the Project Manager of the Excel Extension Development Project in the Software Development Department. Since starting this software development, she has established an outstanding workflow encompassing a full SDLC. She always tries to create a bridge between her skills and interests in... Read Full Bio

4 Comments
  1. Thanks! It works for me.
    Question is I have 4 worksheets all with the same columns.
    I need Column Z that has conflict or no conflict to be copied and pasted into one worksheet.

    So look in worksheet 1, go to column Z and just copy conflicts
    do this for worksheets 2, 3, 4 and then merge into one worksheet that shows all conflicts from worksheets 1,2,3,4
    Is that possible?

    • Thank you Anthony for your question. Let’s assume you have this data in 4 sheets and you want to copy the rows that has conflict.

      Now, the output should contain only the “yes” from the 4 sheets:

      To copy values from 4 sheets to a new sheet, use the following VBA code

      Option Explicit
      Sub Copy_Conflict_Values_New_Sheet()
      Dim xRange As Range
      Dim End_Row, SheetNumber As Integer
      Worksheets("Output").Range("X5:Z100").ClearContents
      For SheetNumber = 1 To 4
      Worksheets(SheetNumber).Activate
          For Each xRange In Range("Z4:Z" & Cells(Rows.Count, "Z").End(xlUp).Row)
          End_Row = Worksheets("Output").Range("Z" & Worksheets("Output").Rows.Count).End(xlUp).Row
          If xRange.Value = "Yes" Then
                  Rows(xRange.Row).Copy Destination:=Worksheets("Output").Rows(End_Row + 1)
                  End_Row = End_Row + 1
          End If
          Next
      Next SheetNumber
      End Sub
  2. I have data in one worksheet, but the number of rows keeps changing. Like today it may have 13000 rows tomorrows 13900 rows and next day more. i need to copy the data to another without opening the source file. how to do that. I kept a range A2:K60000 but after 13000 it comes zero value till 60000 rows. How can i copy the exact rows to destination.

    my code was

    Sub CollectData()
    Dim rgTarget As Range
    Set rgTarget = ActiveSheet.Range(“A2:K60000”) ‘where to put the copied data.
    rgTarget.FormulaArray = “=’C:\Users\Downloads\[USC]Sheet1’!$A$2:$K$60000”
    rgTarget.Formula = rgTarget.Value
    End Sub

    • Thank you for your question. To solve the problem, you have to follow the process and code below.
      1) Firstly, write down the VBA code below.

      Sub Copy_Data_from_Another_Workbook()
      Dim wb As Workbook
      Dim newwb As Workbook
      Dim rn1 As Range
      Dim rn2 As Range
      Set wb = Application.ActiveWorkbook
      With Application.FileDialog(msoFileDialogOpen)
          .Filters.Clear
          .Filters.Add "Excel 2007-13", "*.xlsx; *.xlsm; *.xlsa"
          .AllowMultiSelect = False
          .Show
          If .SelectedItems.Count > 0 Then
              Application.Workbooks.Open .SelectedItems(1)
              Set newwb = Application.ActiveWorkbook
              Set rn1 = Application.InputBox(prompt:="Select Data Range", Default:="A1", Type:=8)
              wb.Activate
              Set rn2 = Application.InputBox(prompt:="Select Destination Range", Default:="A1", Type:=8)
              rn1.Copy rn2
              rn2.CurrentRegion.EntireColumn.AutoFit
              newwb.Close False
          End If
      End With
      End Sub
      End With
      End Sub

      2) By running the code, a “File Open” window will appear on your computer.
      After that, click on the workbook you want to collect data from.
      Then, click on the OK button.

      3) Then, select the data from the source file by dragging over the range, and then click OK.

      4) After selecting the data range. Now select the destination range where you want to put the data.
      And, click OK.

      5) In the end, this will close the source file and the data will copy on the destination file.

      Below is a link to an article where you will find three different methods and different types of VBA codes that will resolve your issue.
      https://www.exceldemy.com/excel-vba-copy-data-from-another-workbook-without-opening/

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo