I am trying to find a way to remove duplicated values in an array. This is the code I have so far which populates the array with no problem.
Dim Filename As String
Dim Filenames(0 To 100) As String
Dim i, x As Integer
Dim Path As String
For i = 2 To 10
If Cells(i, 2).Interior.ColorIndex = 43 Then
Filename = Path + Sheet1.Cells(i, 1)
x = x + 1
Filenames(x) = Filename
End If
Next i