Ok so in the attached the VBA all works as it should: Copying Sheets in opposite order VBA.xlsm
Copies sheet named "Template", for any cell(s) between B14:B29 in worksheet "Input", which are not empty and inserts after "Key numbers" sheet.
Only issue is, they are in the reverse order of the list once created. How can I make it so that they are created and appear in the order that they are in the list???
Heres VBA if you don't want to download the file...
Sub Insert_Sheets()
'Set "cl" reference as range
Dim cl As Range
'Turn off screen updating
Application.ScreenUpdating = False
'Loop trough cells in Col B, starting row 14 until last non-blank cell
With Worksheets("Input")
For Each cl In .Range("B14", .Range("B14").End(xlDown))
'check if cell is non-blank
If cl.Value <> vbNullString Then
'copy template sheet after custom 1 consolidation P&L
Worksheets("Template").Copy After:=Worksheets("Key Numbers")
'rename the sheet. As there are some limitation on sheet name, e.g. 32 chars, some
'chars are not allowed, on error resume next
On Error Resume Next
ActiveSheet.Name = cl.Value
'if error - rename the new sheet to cell address e.g A5
If Err <> 0 Then
ActiveSheet.Name = cl.Address(False, False, xlA1, False)
End If
On Error GoTo 0
End If
Next cl
'Activate Input worksheet again
.Activate
End With
'Turn screen updating on again
Application.ScreenUpdating = True
'Set Template to Hidden
Worksheets("Template").Visible = xlSheetHidden
End Sub
Bookmarks