View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Alan Beban[_2_] Alan Beban[_2_] is offline
external usenet poster
 
Posts: 783
Default how to union two array with same structure

miao jie wrote:

maybe it's stupit question :)
but it's quite convenient for me in my case. anyone know how to union two
array which have same structure into one array.

for example:
array1 = ( (1,1),(1,2),(1,3))
array2 = ((2,1),(2,2))

I wanna get a new array like that
array3 = ( (1,1),(1,2),(1,3),(2,1),(2,2))

thanks in advance :)

Are the arrays 0-based or 1-based (or something else)?

Are they 1-dimensional or 2-dimensional?

Alan Beban