Hi,
Add the following macro and run it. Please note one of your agencies contains a "/" character which is not allowed in a sheet name. The macro will replace a / with a "_"
Sub CreateAgencySheets()
Dim ilastrow As Integer, iAgencies As Integer, x As Integer, rdata As Range
Application.ScreenUpdating = False
ilastrow = Range("A" & Rows.Count).End(xlUp).Row
Set rdata = Sheet1.Range("A1").CurrentRegion
Sheets.Add: ActiveSheet.Name = "temp"
Range("A1") = "Agency": Range("C1") = "Agency"
Sheet1.Range("C1:C" & ilastrow).AdvancedFilter Action:=xlFilterCopy, copytorange:=ActiveSheet.Range("A1"), unique:=True
iAgencies = Range("A1").CurrentRegion.Rows.Count - 1
For x = 1 To iAgencies
Sheets("temp").Range("C2") = Sheets("temp").Range("A1").Cells(x + 1, 1)
Sheets.Add after:=Sheets("temp")
Sheet1.Range("1:1").Copy Range("A1")
rdata.AdvancedFilter Action:=xlFilterCopy, copytorange:=ActiveSheet.Range("A1").CurrentRegion, criteriarange:=Sheets("temp").Range("C1:C2")
If InStr(Sheets("temp").Range("A1").Cells(x + 1, 1), "/") > 0 Then Sheets("temp").Range("A1").Cells(x + 1, 1) = Replace(Sheets("temp").Range("A1").Cells(x + 1, 1), "/", "_")
ActiveSheet.Name = Sheets("temp").Range("A1").Cells(x + 1, 1)
Next x
Application.DisplayAlerts = False
Sheets("temp").Delete
End Sub
HTH
Bookmarks