Re VBA 1 – dimensional Horizontal and Vertical Array conventions…( ha 1, 2, 3, 4 )
Hi, … here we go, “ Ha – 1, 2 , 3, 4 “
. While answering this Thread yesterday..
http://www.excelforum.com/excel-prog...ing-macro.html
.. some basic 1 - dimensional Horizontal and Vertical Array conventions bugged me a bit.. I got over it but do not quite understand what is going on. Can someone help me get it clear.
. Basically I am slightly confused with array formats of this type
. (1,1) (1,2) (1,3) (1,4)
. compared with those of this type…
. (1) (2) (3) (4)
.
. The problem came up whilst concatenating a row of cells using the Visual Basic Application Join Method. I needed this format
. (1) (2) (3) (4)
. for the first argument, rather than this format
. (1,1) (1,2) (1,3) (1,4)
. I cannot quite see the subtle difference.
……….
. To demonstrate pictorially. Say I have the following spreadsheet before running any code, with two arbitrary I dimensional ranges vertical ( A1:A4) and horizontal (A1:D1):
l
Using Excel 2007
- A B C D 1HAone Htwo Hthree Hfour 2Atwo 3Athree 4Afour
Tabelle1
I wish to concatenate the cell values from the vertical and Horizontal cells ranges into arbitrary cells, say, for example, the horizontal range in to be put in cell B5 and the Vertical range to be put in cell A6. - So after running my code I wish to have this:
Using Excel 2007
- A B C D 1HAone Htwo Hthree Hfour 2Atwo 3Athree 4Afour 5HAone Htwo Hthree Hfour 6HAone Atwo Athree Afour
Tabelle1
. By a bit of googling and experimenting I wrote a code to achieve this:
![]()
Please Login or Register to view this content.
.. Using F8 and the setting watches in the watch window for all arrays in the code I was able to observe the different array formats, and so “empirically” see the format requirements to get my code to work.
. I can clearly see the form of the syntax requirement, and see for example that “luckily” the transpose function returns me the correct syntax applied to a Vertical array. ( (1) (2) (3) (4) type format ).
. For the horizontal array I see initially it has the incorrect ( (1,1) (1,2) (1,3) (1,4)
Type ) format. So I do a “Trick” to change the format using the Index function (- This “Trick” is usually used to “slice” ( return a single row or column ) from a multi- dimensional array
( .. seefor example:-
https://usefulgyaan.wordpress.com/20...ication-index/
.. ) ) .
. The changed format gives then the required (1) (2) (3) (4) type format
…so far so good
BUT:-
… I do not really understand the subtle difference in the two versions of a 1- dimensional (horizontal ) array.
. can anyone explain the subtle difference in plain English ( or German! )
Thanks
Alan
P.s.1 “Just for fun” at the end of my code I paste out both format versions of the horizontal array to
Arbitrary Ranges using the VBA allowed “one liner” to assign values in an Array to cells in a range. The results are identical for both Arrays
P.s.2 I upload the file I am using for these experiments in case it helps:
https://app.box.com/s/h6lyxjmh84det1j15rhgxz01ectwjyma
Bookmarks