Hi all,
I have the following code:
How can I include a line/lines that will rename the copied 8 sheets as follows:
MAN
MAK
PAK
MAP
PAR
KAR
RAK
KAN
In that exact order?
Thanks
I have the following code:
Code:
Sub Copysheet()
Dim i As Integer
i = 1
For i = 1 To 8
Sheets("P&L-OPS").Copy Before:=Sheets(5)
Next i
End Sub
How can I include a line/lines that will rename the copied 8 sheets as follows:
MAN
MAK
PAK
MAP
PAR
KAR
RAK
KAN
In that exact order?
Thanks