View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Chaplain Doug Chaplain Doug is offline
external usenet poster
 
Posts: 127
Default Determining Array Limit

Thank you Alan and Frank. God bless.

"Alan Beban" wrote:

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