+ Reply to Thread
Results 1 to 10 of 10

Splitting a Worsheet into multiple files based on Cell Value

Hybrid View

  1. #1
    Registered User
    Join Date
    02-03-2014
    Location
    Manchester, England
    MS-Off Ver
    Excel 2010
    Posts
    14

    Splitting a Worsheet into multiple files based on Cell Value

    I have a report which details multiple fields and one of the columns is manager name.

    This report is 3,000 rows long however I am looking to create a separate file for each individual line manager.

    I understand a code can be written into VBA which when run will split the sheet into multiple files.

    Any hekp on this matter would be greatkly appreciated.

    Phil

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Splitting a Worsheet into multiple files based on Cell Value

    I had another same issue some time ago. See if this helps you.

    Sub PagesByDescription()
    Dim rRange As Range, rCell As Range
    Dim wSheet As Worksheet
    Dim wSheetStart As Worksheet
    Dim strText As String
    
        Set wSheetStart = ActiveSheet
        wSheetStart.AutoFilterMode = False
        'Set a range variable to the correct item column
        Set rRange = Range("A1", Range("A65536").End(xlUp))
        
            'Delete any sheet called "UniqueList"
            'Turn off run time errors & delete alert
            On Error Resume Next
            Application.DisplayAlerts = False
            Worksheets("UniqueList").Delete
            
            'Add a sheet called "UniqueList"
            Worksheets.Add().Name = "UniqueList"
            
               'Filter the Set range so only a unique list is created
                With Worksheets("UniqueList")
                    rRange.AdvancedFilter xlFilterCopy, , _
                     Worksheets("UniqueList").Range("A1"), True
                     
                     'Set a range variable to the unique list, less the heading.
                     Set rRange = .Range("A2", .Range("A65536").End(xlUp))
                End With
                
                On Error Resume Next
                With wSheetStart
                    For Each rCell In rRange
                      strText = rCell
                     .Range("A1").AutoFilter 1, strText
                        Worksheets(strText).Delete
                        'Add a sheet named as content of rCell
                        Worksheets.Add().Name = strText
                        'Copy the visible filtered range _
                        (default of Copy Method) and leave hidden rows
                        .UsedRange.Copy Destination:=ActiveSheet.Range("A1")
                        ActiveSheet.Cells.Columns.AutoFit
                    Next rCell
                End With
                
            With wSheetStart
                .AutoFilterMode = False
                .Activate
            End With
            
            On Error GoTo 0
            Application.DisplayAlerts = True
    End Sub
    Attached Files Attached Files
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Registered User
    Join Date
    02-03-2014
    Location
    Manchester, England
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Hi Fotis,

    Many thanks for your help. The code you provide actually splits the sheet into multiple sheetsm, I am looking to create separate files. Also, the value I am basing this split on is in Column M.

    Hope you are able to look into this for me.

    Regards

    Phil

  4. #4
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Splitting a Worsheet into multiple files based on Cell Value


  5. #5
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Phil

    Holger's code in that thread is easy to modified. Insist of column A that both of us used there you have to use column M.

    If you can not handle this, then upload a small sample workbook to show you how to do this.

  6. #6
    Registered User
    Join Date
    02-03-2014
    Location
    Manchester, England
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Hi Fotis,

    I have amended the references to ranges A to M but this is not working however I moved my column from M to A which worked.

    If I add the line manager email address is it possible to add to the macro to create an email, add text and add the respective file?

    Regards

    Phil

  7. #7
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Phil sorry but i don't know(i am talking about your new questions).

    But as this is something different from your original question, you can mark this thread as solved and start a new thread with your new questions.

    Good luck.

  8. #8
    Registered User
    Join Date
    02-03-2014
    Location
    Manchester, England
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Hi Fotis,

    I can't see the mark solved option.

    Regards

    Phil

  9. #9
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Splitting a Worsheet into multiple files based on Cell Value

    As that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED,as per Forum Rule #9. Thank you.

  10. #10
    Registered User
    Join Date
    02-03-2014
    Location
    Manchester, England
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Splitting a Worsheet into multiple files based on Cell Value

    Hi Fotis,

    Further to the above case we have a similar reauest which relates to the above but goes one step further. We want the sheets to be split but then to add a password to each split file. Is there any code to this effect that we can add to the macro?

    Regards

    Phil

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Splitting a cell into multiple cells via VBA based on CHR(13)
    By Miraun in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-19-2013, 05:53 PM
  2. How do I combine splitting data into files then splitting the new files data into multiple
    By Lauraguthrie in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-01-2013, 01:18 PM
  3. Splitting Data Into Separate Files Based on Pre-Populated List
    By sigma1113 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 11-16-2011, 03:20 PM
  4. Splitting out Excel data to multiple files based on one column's values
    By machos in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-28-2011, 08:55 AM
  5. Splitting txt file into multiple txt files
    By undergraduate in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-02-2010, 11:32 AM

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