Results 1 to 3 of 3

Copying sheets in reverse order

Threaded View

  1. #1
    Forum Contributor
    Join Date
    02-14-2012
    Location
    Warrington
    MS-Off Ver
    Excel 365
    Posts
    497

    Copying sheets in reverse order

    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
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] reverse order
    By anilg0001 in forum Excel Programming / VBA / Macros
    Replies: 19
    Last Post: 04-18-2013, 07:53 AM
  2. [SOLVED] How do I reverse name order from Last, First to First Last in Exc
    By Annie Lord in forum Excel General
    Replies: 3
    Last Post: 06-27-2006, 01:55 PM
  3. [SOLVED] reverse order
    By Lamb Chop in forum Excel General
    Replies: 4
    Last Post: 06-20-2006, 10:40 AM
  4. Reverse the order?
    By davegb in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-07-2005, 05:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1