View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
OssieMac OssieMac is offline
external usenet poster
 
Posts: 2,510
Default Help with code issues

Hi again,

See my reply in your other post. However, you can replace the following
lines of code that I gave you with .Clear

If .ListCount 0 Then
For i = .ListCount - 1 To 0 Step -1
.RemoveItem (i)
Next i
End If

Regards,

OssieMac