Copy ranges Accounting!:
AY13:BH13
AL15:BH15
Paste(Special) ranges InvPrint!:
AT6:AY6
D20:AJ20
This is as far as I got regarding the code...
I currently have code to make one "selection" at a time and copy/paste. But this requires going back and forth between Accounting! and InvPrint! a minimum of 2 times, but potentially 20+ times. I just see failure of the code at some point with it going back and forth so many times.
AY13:BH13
AL15:BH15
Paste(Special) ranges InvPrint!:
AT6:AY6
D20:AJ20
This is as far as I got regarding the code...
VBA Code:
Dim Rng1 As String
Dim Rng2 As String
Dim Rng11 As Sting
Dim Rng22 As String
Rng1 = Range("Accounting!AL15:BH15")
Rng2 = Range("Accounting!AY13:BH13")
Rng11 = Range("InvPrint!D20:AJ20")
Rng22 = Range("InvPrint!AT6:AY6")
I currently have code to make one "selection" at a time and copy/paste. But this requires going back and forth between Accounting! and InvPrint! a minimum of 2 times, but potentially 20+ times. I just see failure of the code at some point with it going back and forth so many times.