andy7172289
Technical User
The code below stops when it gets to the second row of the first section. Can anyone tell me why? I've double checked all the tabs have the correct naming conventions...
LastRow = Sheets("RR Master").Range("A" & Rows.Count).End(xlUp).Row
Sheets("RR S&C").Range("A2").Select
Selection.AutoFill Destination:=Range("A2:L" & LastRow)
Sheets("RR PL").Range("A2").Select
Selection.AutoFill Destination:=Range("A2:I" & LastRow)
Sheets("RR Validation").Range("A2").Select
Selection.AutoFill Destination:=Range("A2:J" & LastRow)
Thanks guys, problem solved. The issue now lies with the 'Selection.AutoFill Destination:=Range(A2:I" & LastRow)'