Esteemed Forum Participants and Lurkers:
===============================
Excel 2005 VBA

I have an array that holds a list of error files (if any). I Dim the array at the start of the Sub (Dim NoStore() As Integer), I Redim it "Preserve" each time I add a new item, and then at the end I generate a report of the errors. The problem I run into is that often there are NO errors, and the following line gives me a "Subscript Out of Range" error:

For i = 0 To UBound(NoStore)

What is a clean and elegant way to test to see if the Array "NoStore()" has no items in it? I have tried IsEmpty, IsNull, and a few other things, but all without success.

I sincerely appreciate any and all comments, suggestions, and assistance.