I have an array that I need all elements compared to each other and if equal, one of the elements reset to nothing. Currently I have
Dim first as integer
Dim second as integer
Dim Array() as array
For second = 1 to 155
If Array(first) = Array(second) Then
Array(second) = ""
End If
Next second
All this does is keep the first element in the array and reset everything else to ""
Any direction would be helpful
Dim first as integer
Dim second as integer
Dim Array() as array
For second = 1 to 155
If Array(first) = Array(second) Then
Array(second) = ""
End If
Next second
All this does is keep the first element in the array and reset everything else to ""
Any direction would be helpful