What is the easist way to empty a collection to allow for more/new
items to be added?
Dim CheckEmpty As New Collection
Sub CollectionEmptyTry()
Dim Obj As String
Obj = Range("P17").Value
If Cells(1, 1) <> "" Then
CheckEmpty.Add Obj
If CheckEmpty.Count > 20 Then
CheckEmpty = Empty
End If
End Sub
This does not work but it shows what i am trying to accomplish?