The code below gets a list of unique contacts from column F and then outputs them in the Immediate window.
How would I use this data created to run a series of autofilters on the data (i.e. within a for loop, one at a time). In between each autofilter, the data will be copied and saved to a new spreadsheet.
Sub GetPrimaryContacts()
Dim Col As New Collection
Dim itm
Dim i As Long
Dim CellVell As Variant
'Get last row value
LastRow = Cells.SpecialCells(xlCellTypeLastCell).Row
'Loop between all rows to get unique values
For i = 3 To LastRow
CellVal = Sheets("Master").Range("F" & i).Value
On Error Resume Next
Col.Add CellVal, Chr(34) & CellVal & Chr(34)
On Error GoTo 0
Next i
For Each itm In Col
Debug.Print itm
Next
End Sub