Here's the tweaked version of the macro.
Option Explicit
Sub ParseItems()
'Author: Jerry Beaucaire
'Date: 11/11/2009
'Summary: Based on selected column, data is filtered to individual sheets
' Creates sheets and sorts sheets alphabetically in workbook
' 6/10/2010 - added check to abort if only one value in vCol
' 7/22/2010 - added ability to parse numeric values consistently
Dim LR As Long, Itm As Long, MyCount As Long, vCol As Long, stCol As Long
Dim ws As Worksheet, MyArr As Variant, vTitles As String
Application.ScreenUpdating = False
'Column to evaluate from, column A = 1, B = 2, etc.
vCol = 27
'Sheet with data in it
Set ws = Sheets("Master Leads")
'Range where titles are across top of data, as string, data MUST
'have titles in this row, edit to suit your titles locale
vTitles = "A1:Z1"
'Spot bottom row of data
LR = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
'Add key
stCol = ws.Rows(1).Find("State", LookIn:=xlValues, LookAt:=xlWhole).Column
With ws.Range("AA2:AA" & LR)
.FormulaR1C1 = "=VLOOKUP(RC" & stCol & ", Assignment!C1:C2, 2, 0)"
.Value = .Value
End With
'Get a temporary list of unique values from column A
ws.Columns(vCol).SpecialCells(xlConstants).AdvancedFilter _
Action:=xlFilterCopy, CopyToRange:=ws.Range("EE1"), Unique:=True
'Sort the temporary list
ws.Columns("EE:EE").Sort Key1:=ws.Range("EE2"), _
Order1:=xlAscending, Header:=xlYes, OrderCustom:=1, _
MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
'Put list into an array for looping
'(values cannot be the result of formulas, must be constants)
MyArr = Application.WorksheetFunction.Transpose(ws.Range("EE1:EE" _
& Rows.Count).SpecialCells(xlCellTypeConstants))
'clear temporary worksheet list
ws.Range("EE:EE").Clear
'Turn on the autofilter, one column only is all that is needed
ws.Columns(vCol).AutoFilter
'Loop through list one value at a time
'The array includes the title cell, so we start at the second value in the array
'In case values are numerical, we convert them to text with ""
For Itm = 2 To UBound(MyArr)
ws.Columns(vCol).AutoFilter Field:=1, Criteria1:=MyArr(Itm) & ""
If Not Evaluate("=ISREF('" & MyArr(Itm) & "'!A1)") Then 'create sheet if needed
Worksheets.Add(After:=Worksheets(Worksheets.Count)).Name = MyArr(Itm) & ""
Else 'clear sheet if it exists
Sheets(MyArr(Itm) & "").Move After:=Sheets(Sheets.Count)
Sheets(MyArr(Itm) & "").Cells.Clear
End If
ws.Range("A" & Range(vTitles).Resize(1, 1) _
.Row & ":N" & LR).Copy Sheets(MyArr(Itm) & "").Range("A1")
ws.Columns(vCol).AutoFilter Field:=1
MyCount = MyCount + Sheets(MyArr(Itm) & "") _
.Range("A" & Rows.Count).End(xlUp).Row - 1
Sheets(MyArr(Itm) & "").Columns.AutoFit
Next Itm
'Cleanup
ws.Activate
ws.AutoFilterMode = False
ws.Columns(vCol).ClearContents
MsgBox "Rows with data: " & (LR - 1) & vbLf & "Rows copied to other sheets: " _
& MyCount & vbLf & "Hope they match!!"
Application.ScreenUpdating = True
End Sub
I installed that into your workbook and hid the ASSIGNMENT sheet.
Remember, you don't actually have to make the agent sheets. Just set the STATE assignments on the assignments sheet and whatever names you put in column B will be used. The macro will create any sheets that it needs to.
Bookmarks