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

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,216,124
Messages
6,128,991
Members
449,480
Latest member
yesitisasport

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