Thread
:
Problem Deleting all rows from List Object
View Single Post
#
2
Posted to microsoft.public.excel.programming
Ivan Raiminius
external usenet poster
Posts: 258
Problem Deleting all rows from List Object
Hi Dean,
change this:
For Each objLR In objListRows
If objListRows.Count 0 Then
objLR.Delete
End If
Next
with a loop:
for i=1 to objListRows.count
....do what you want
next i
Regards,
Ivan
Reply With Quote
Ivan Raiminius
View Public Profile
Find all posts by Ivan Raiminius