Can you change
For Each e In dic
If Not IsSheetExists(e) Then
Sheets.Add(after:=Sheets("Complete Vendor List")).Name = e
End If
With Sheets(e)
.Cells.Clear
dic(e).Copy .Cells(1)
With .Cells(1).CurrentRegion
.Columns(15).Offset(1).Resize(.Rows.Count - 1).Value = e
.Columns.AutoFit
End With
End With
Next
to
For Each e In dic
If e <> "" Then
If Not IsSheetExists(e) Then
Sheets.Add(after:=Sheets("Complete Vendor List")).Name = e
End If
With Sheets(e)
.Cells.Clear
dic(e).Copy .Cells(1)
With .Cells(1).CurrentRegion
.Columns(15).Offset(1).Resize(.Rows.Count - 1).Value = e
.Columns.AutoFit
End With
End With
End If
Next
Bookmarks