I am trying to figure the VBA code to copy the contents of a certain range that always occurs in the same place over the course of 478 worksheets, and then paste this information in successive rows in a different workbook.
Here is my code:
![]()
Sub Macro1() Dim ws As Worksheet ' Macro1 Macro ' ' Windows("SurveySummary.xlsm").Activate For Each ws In ThisWorkbook With Range("C4:J4").Select Application.CutCopyMode = False Selection.Copy End With Windows("RFP Comparison Base - automation.xlsm").Activate Range("B8").Offset(1, 0).Select ActiveSheet.Paste Next End Sub
Any help would be much appreciated!
Bookmarks