I've got a range that I'm inserting into an array. after that, I'm trying to get only the unique Items but I get them with one (unique) empty value (There are few blanks in my range).
How can I get rid of the empty array cell?
This is my code:
Sub uniqueArray()
Dim myList As Variant
uniqueNameList As Variant
myList = Range("C2:C100").Value
uniqueNameList = WorksheetFunction.Unique(myList)
End sub
