View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JLatham JLatham is offline
external usenet poster
 
Posts: 3,365
Default what does 'Subscript Out of range' mean??

Ron has given one example of when you would see that error. There are other
conditions that will generate it. Generally speaking, if you attempt to
reference a member of a collection or an array that does not exist, you will
get that error.

Another example:
Dim anyArray(1 To 100) As String
Dim myElement As String

myElement = anyArray(101) ' will generate the same error.

"Gary" wrote: