I have the following code that returns 50 random color-coded numbers:
Sub RandomNumberColor()
  Dim Numbers, i As Integer
  Dim MyRange As Range
  Set MyRange = Worksheets("Rnd").Range("A1:A50")
  For i = 1 To MyRange.Rows.Count
    Numbers = Int((10 - 1 + 1) * Rnd + 1)
    Worksheets("Rnd").Cells(i, 1) = Numbers
    Worksheets("Rnd").Cells(i, 1).Interior.ColorIndex = Worksheets("Rnd").Cells(i, 1).Value
  Next i
End Sub
I am trying to find a way to find all the unique values in that column (A), and returns them to Column (B). For some reason, I am having issues figuring this out, any help would be much appreciated!