View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Alan Beban[_2_] Alan Beban[_2_] is offline
external usenet poster
 
Posts: 783
Default Determining Array Limit

Frank Kabel wrote:
Hi
have a look at UBound in the VBA help


More specifically, since it might not be apparent from the On-line help:

UBound(myArray) - LBound(myArray) + 1

Alan Beban