View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default Arrey VAriable - How to initialise

Hi Madiya,

Am Tue, 16 Jul 2013 03:32:03 -0700 (PDT) schrieb Madiya:

I am getting subscript out of range error on line marked above.
However if I use Dim p(100) as integer, I do not get error.
As far as possible, I would like to use arrey without specifying any upper limit.


an array starts with index 0.
You have to specify a upper limit. If you don't do it in declaration
part, you have to do it into the code part.
Try:

Sub Macro1()
Dim p() As Integer
Dim i As Integer
Dim myMax As Integer

myMax = 9
ReDim p(myMax)
For i = 0 To myMax
p(i) = (i + 1) * 10
Next
For i = LBound(p) To UBound(p)
Debug.Print p(i)
Next
End Sub


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2