+ Reply to Thread
Results 1 to 3 of 3

Create worksheets based on template for list of names

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Create worksheets based on template for list of names

    I have a list of company names in Column A, Sheet1. I have a template on Sheet2

    I would like to create a new worksheet for each company name in ColumnA, Sheet1 based on the template in Sheet2.

    Please see attached.
    Attached Files Attached Files
    Last edited by Xx7; 02-11-2012 at 06:11 PM.

  2. #2
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Create worksheets based on template for list of names

    Xx7,

    Here's one way to do it:
    Sub tgr()
        
        Dim wsSum As Worksheet: Set wsSum = Sheets(1)
        Dim wsTmp As Worksheet: Set wsTmp = Sheets(2)
        Dim NameCell As Range
        
        Application.ScreenUpdating = False
        
        For Each NameCell In Intersect(wsSum.UsedRange, wsSum.Columns("A"))
            If Trim(NameCell.Text) <> vbNullString And ValidSheetName(Trim(NameCell.Text)) Then
                wsTmp.Copy after:=Sheets(Sheets.Count)
                ActiveSheet.Name = Trim(NameCell.Text)
            End If
        Next NameCell
        wsSum.Select
        
        Application.ScreenUpdating = True
        
    End Sub
    
    Private Function ValidSheetName(strName As String) As Boolean
        
        Dim ws As Worksheet
        Dim i As Integer
        
        If Len(strName) > 31 Then
            MsgBox "Sheet name """ & strName & """ exceeds 31 characters.", , "Invalid Sheet Name"
            Exit Function
        End If
        
        For i = 1 To 7
            If InStr(strName, Mid(":\/?*[]", i, 1)) > 0 Then
                MsgBox "Invalid character in """ & strName & """" & Chr(10) & Chr(10) & "The following are invalid characters:" & Chr(10) & ": \ / ? * [ ]", , "Invalid Sheet Name"
                Exit Function
            End If
        Next i
        
        On Error GoTo ValidName
        Set ws = Sheets(strName)
        MsgBox "Sheet name """ & strName & """ already exists", , "Invalid Sheet Name"
        Exit Function
        
    ValidName:
        ValidSheetName = True
        
    End Function
    Last edited by tigeravatar; 02-06-2012 at 07:14 PM.
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Forum Contributor
    Join Date
    01-30-2011
    Location
    Vancouver, Canada
    MS-Off Ver
    Excel 2010
    Posts
    604

    Re: Create worksheets based on template for list of names

    That's great! thanks alot

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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