+ Reply to Thread
Results 1 to 13 of 13

Autofilter & Copy Macro

Hybrid View

  1. #1
    Registered User
    Join Date
    01-18-2007
    Posts
    81

    Autofilter & Copy Macro

    Hello

    I have a main workbook with 40,000 lines of data for various locations. Column A shows the locations. They all have the same fields in column B to N

    I am looking for a macro that will filter on column A (Location name) & for every location in that’s in there,
    Copy it, open a new worksheet, paste the data for that location into it, plus, name the tab the same as the location name that’s been pasted in there.

    I attach a workbook, of desired results.

    Any help would be much appreciated
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    07-05-2007
    Location
    Cincinnati, OH
    Posts
    44
    Do you want this to be an automatic macro, or just a macro?

  3. #3
    Registered User
    Join Date
    01-18-2007
    Posts
    81
    Hello.

    I need it to be a macro.

    Cheers

  4. #4
    Registered User
    Join Date
    07-05-2007
    Location
    Cincinnati, OH
    Posts
    44
    Hello,

    I've started working on your problem. I have the macro that copies and pastes, I just want to clarify - you are not always shipping to the five cities you have listed, correct? There will be more cities, and when more cities come, you need those worksheets to be automatically created, correct?

  5. #5
    Registered User
    Join Date
    01-18-2007
    Posts
    81
    Yes, that is correct.

    Some new locations may come on board, & some currant ones may not have data in some periods.

    Cheers

  6. #6
    Registered User
    Join Date
    07-05-2007
    Location
    Cincinnati, OH
    Posts
    44

    Ta da!

    I have completed the macro!

    Sub DataTransfer()
    Dim LastDest As Long
    Dim ScrWsht, DestWsht As Worksheet
    On Error GoTo trap
    
    
    'Source Worksheet to copy from
    Set ScrWsht = Sheets("TOTAL")
    
    'Destination Worksheet to copy to
    Set DestWsht = Sheets(ActiveCell.Value)
    
    'Copy row in TOTAL
    ActiveCell.Range("A1:N1").Select
    Selection.Copy
    
    'Check to see if Destination Worksheet is Selected
    If Not ActiveSheet.Name = DestWsht.Name Then
    DestWsht.Select
    End If
    
    'Copy and Transpose to next blank row in Column A
    Run "Find_Blank"
    ActiveCell.Range("A1:N1").Select
    ActiveSheet.Paste
    
    Application.CutCopyMode = False
    
    
    trap:
    If Err = 9 Then
        Application.ScreenUpdating = False
        Sheets.Add.Name = ActiveCell.Value
        Range("A1").Select
        ActiveCell.Select
        ActiveCell.FormulaR1C1 = "=Header"
        Selection.AutoFill Destination:=ActiveCell.Range("A1:N1"), Type:= _
            xlFillDefault
        ActiveCell.Range("A1:N1").Select
        Selection.Font.Bold = True
        ActiveCell.Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 15.29
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 10.14
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 8.29
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 9.86
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 11.46
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 8.43
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 13.29
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 10.17
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 9
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 10.14
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 10.14
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 10.14
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 23.29
        ActiveCell.Offset(0, 1).Columns("A:A").EntireColumn.Select
        Selection.ColumnWidth = 4
        ActiveWindow.Zoom = 75
        Application.ScreenUpdating = True
        
    End If
       
     
     
     
    End Sub
    That macro calls this macro to make it run
    Sub Find_Blank()
    Dim BCell, NBCell
    'finds the next empty cell in range 
    Range("A1").Select
    
    For I = 1 To 65536
    If ActiveCell.Value = Empty Then
    BCell = "A" & CStr(I - 1)
    NBCell = "A" & CStr(I - 2)
    Exit Sub
    Else
    Range("A" & CStr(I + 1)).Select
    End If
    Next I
    End Sub
    I'm still new at this, but this definitely works. The way I have it set up is for you to select the city and then run the macro. I didn't really focus on filtering it, but I can do that as well. Let me know if you have problems.

    Katie
    Last edited by ilovedurango; 07-20-2007 at 02:18 PM.

+ 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