+ Reply to Thread
Results 1 to 10 of 10

Create New Worksheet Based On Values within a Cell, then Insert Row

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Create New Worksheet Based On Values within a Cell, then Insert Row

    I hope this is something that can be done in Excel:

    This has 2 parts:

    1. In column O, I have comma-separated values that represent different product categories. For each unique comma-separated value, I want to create a new worksheet within the current workbook with the same sheet name as the comma-separated value.

    2. Insert each row into the corresponding new sheets.

    See example sheet attached.

    1. From column O, there are 10 comma-separated values, 8 of which are unique, so these 8 new sheets would be created: diaper bags, feeding, shopping, decor, rockers, strollers, play, bath.
    2. Row 1 would be inserted into the following worksheets: diaper bags, feeding, and shopping. Row 2 would be inserted into decor and feeding. Row 3 would be inserted into rockers, strollers, play, bath, diaper bags.

    If it's not possible to insert the entire row, then inserting just values in column A would be good enough.

    Thanks!
    Attached Files Attached Files
    Last edited by Ocean Zhang; 02-28-2013 at 11:31 PM.

  2. #2
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    I forgot to include the attachment with my original post. Edited to add attachment.

  3. #3
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    See if this is how you wanted.
    Attached Files Attached Files

  4. #4
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    Wow, You're my HERO! Awesome stuff. Thanks so much!

  5. #5
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    Wait, there was a problem somewhere. For some reason it worked on the example worksheet, but it didn't work properly on my actual production sheet.

    I've uploaded the actual file I'll be working on.

    Thanks so much for your help!
    Attached Files Attached Files

  6. #6
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    1) Replace "Sheet1" with "Complete Vendor List"

    2) You have invalid character for the sheet name.
    e.g
    : \ ? [ ] / *

    You need to delete all these from the categories.
    And the Length of the sheet name MUST be less than 31 characters.

  7. #7
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    Okay, I cleaned it up and tried again. This time I get a run time error

    I attached my current version without special characters and less than 31 characters long. Can someone please investigate?

    Thanks!
    Attached Files Attached Files

  8. #8
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    Can you change
        For Each e In dic
            If Not IsSheetExists(e) Then
                Sheets.Add(after:=Sheets("Complete Vendor List")).Name = e
            End If
            With Sheets(e)
                .Cells.Clear
                dic(e).Copy .Cells(1)
                With .Cells(1).CurrentRegion
                    .Columns(15).Offset(1).Resize(.Rows.Count - 1).Value = e
                    .Columns.AutoFit
                End With
            End With
        Next
    to
        For Each e In dic
            If e <> "" Then
                If Not IsSheetExists(e) Then
                    Sheets.Add(after:=Sheets("Complete Vendor List")).Name = e
                End If
                With Sheets(e)
                    .Cells.Clear
                    dic(e).Copy .Cells(1)
                    With .Cells(1).CurrentRegion
                        .Columns(15).Offset(1).Resize(.Rows.Count - 1).Value = e
                        .Columns.AutoFit
                    End With
                End With
            End If
        Next

  9. #9
    Forum Contributor
    Join Date
    05-29-2009
    Location
    Chattanooga, TN
    MS-Off Ver
    2021
    Posts
    205

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    Yes, it worked! Thanks!

  10. #10
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,166

    Re: Create New Worksheet Based On Values within a Cell, then Insert Row

    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    Select Thread Tools-> Mark thread as Solved. To undo, select Thread Tools-> Mark thread as Unsolved.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

+ 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