View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel,microsoft.public.excel.misc
RB Smissaert RB Smissaert is offline
external usenet poster
 
Posts: 2,452
Default Array function with more than 29 arguments

Not sure what you are trying to achieve, but maybe something like this will
work for you:

Sub test()

Dim i As Long
Dim arr(1 To 1, 1 To 30) As Long

For i = 1 To 30
arr(1, i) = i
Next i

Range("A1:AD1").Value = arr

End Sub


RBS

wrote in message
oups.com...
Hi all,

I want to write more than 29 array varibles (defined in a my VBA code)
in a workbook range. Is there a way to accomplish this?

Here is my sample code (check my remark):

Sub ArrayTest()
Dim Array1 As Variant
Dim Array2 As Variant
Dim CompleteArray As Variant

Array1 = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15)
Array2 = Array(16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30)
CompleteArray = Array(Array1, Array2)

Range("A1:AD1").Value = (CompleteArray) 'Result: Range A1 & B2 is
empty while the rest is #N/A
End Sub

Thanks for any feedback!

- Bas