Automatic alphabetic data extraction macro needed

TheAssetMgr

Board Regular
Joined
Nov 8, 2011
Messages
63
I came across someone in the office today that has been spending huge amounts of time on unnecessary copy/paste/sort gymnastics and it hurt my soul to watch. I know you geniuses can help me/her out so here's what she's doing...

She's working with 3 spreadsheets; I'll call them Initial, Working, and Final.

The Initial file has all the data (and then some) that needs to end up on the Final spreadsheet but the kicker is that the Final spreadsheet has 26 tabs, A-Z and data copied there has to be in a certain tab based on a name. The user is copying 6 columns all at once from Initial to Working, sorting the Patient Name column in Working alphabetically, copying all the As to the Final spreadsheet and then repeating for each letter until there's no more data in Working.

What I'm looking for is a macro that can be executed that will look at Initial, find all the Patient Names beginning with A, copy the required columns of data from Initial to the Final spreadsheet, tab A... and then repeat for Patient Name values beginning with B, and so on.

The Working file the user created was done so the Initial data didn't have to be touched while being worked on. Just a standard CYA working file is all it is. No need to use one in the final solution if it's not necessary.

Any thoughts?
 
In that case check you have a sheet called W, especially check for any leading/trailing spaces on the sheet name.
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Found the problem, and it was my fault for giving you erroneous information. The Final spreadsheet had the last tab labeled "W-Z" and when I broke that out into each letter the code worked great.

I'm going to continue testing to make sure all is well and then I'll try it on the real thing. Thanks so much!
 
Upvote 0
One more thing... how can I make this a key combo executable macro sort of thing? Just want to keep things simple for the user.
 
Upvote 0
A little different approach: Same caveats as Fluffs code as far as what needs to be open and what page must be the activesheet.

Code:
Sub Alpha()
    
    Dim ws As Worksheet: Set ws = ActiveSheet
    Dim wbF As Workbook: Set wbF = Workbooks("Final.xlsx")
    Dim cols, arr, tL, tB, hdr
    Dim i As Long, ct As Long, nct As Long, rw, a As Long
    Dim nam As String
    
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    hdr = Array("Patient Name", "Patient ID #", "Type of Visit", "Patient Gender", "Age in Years", "Date of birth")
    tB = Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z")
    cols = Array("3", "4", "9", "16", "19", "21")
    arr = ws.Range("A2:U" & Cells(Rows.Count, 3).End(xlUp).Row)
    ct = 1
    wbF.Activate
    For i = 0 To 25
        Worksheets(tB(i)).Delete
        wbF.Worksheets.Add(after:=Worksheets(wbF.Worksheets.Count)).Name = tB(i)
        For ct = LBound(arr) To UBound(arr)
            If Left(arr(ct, 3), 1) = tB(i) Then
                nct = nct + 1
            End If
        Next
        ReDim tL(1 To nct, 1 To 6)
        nct = 0
        a = 1
        For ct = LBound(arr) To UBound(arr)
            If Left(arr(ct, 3), 1) = tB(i) Then
                nct = nct + 1
                
                For Each rw In cols
                    tL(nct, a) = arr(ct, rw)
                    a = a + 1
                Next
            End If
            a = 1
        Next
        Range("A2").Resize(UBound(tL, 1), UBound(tL, 2)) = tL
        Range("A1").Resize(, UBound(hdr)) = hdr
        tL = Empty
    Next
    Worksheets("A").Select
    Application.DisplayAlerts = True
    Application.ScreenUpdating = True
    
End Sub
 
Last edited:
Upvote 0
As an aside... Although my code is significantly longer and significantly uglier, on 100K rows of data it runs significantly faster...
 
Upvote 0
You're welcome. I had been working on it so I thought I would throw it out there. Plus it's always nice to see different ways to do the same thing...
 
Upvote 0
One more thing... how can I make this a key combo executable macro sort of thing? Just want to keep things simple for the user.
To creat a shortcut, in the worksheet use Alt F8 > select the macro from the list > Options > & enter the shortcut you want to use.
 
Upvote 0
Perfect, thanks very much for the help on this Fluff! You've saved this person about 40 hours a month in ridiculous manual effort - much appreciated!

I appreciate as well your time igold, thanks for the alternative.
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top