Forum Discussion
JoseP1504
May 02, 2023Copper Contributor
Copy specific cells from one workbook to another.
Good morning. I am trying to copy specific cells from one workbook to another. Per sample input attached, I'm trying to copy ONLY cells B3 to F10 into the same cells (B3 to F10) in another workb...
HansVogelaar
May 02, 2023MVP
wb.Sheets(1).Range("B3:F10").Copy targetWorkbook.Sheets ("Sample").Range("B3:F10")