how to copy data from one excel workbook and paste them into another workbook in VBA

kayalvizhi kandhan

New Member
Joined
Aug 11, 2020
Messages
1
Office Version
  1. 2007
Platform
  1. Windows
hi
i am using this code to copy one column data from worksheets(sample_sheet) and paste the into another hidden excel workbook i.e., Worksheets("Transaction level details").. i use this code , but "paste " is not working, kindly help me

''Selection the Description Begings with "Deposit" criteria
With Worksheets(sample_sheet)
.Range("C2").Select
.Range(Selection, Selection.End(xlDown)).Select
.Selection.Copy
End With

'Worksheets("Transaction level details").Visible = xlSheetVisible
With Windows("Excel Sheet format.xlsx")
.Activate
.Range("G" & filled_row).Select
.Selection.PasteSpecial xlPasteValues
End With
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Forum statistics

Threads
1,215,643
Messages
6,125,990
Members
449,278
Latest member
MOMOBI

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top