In an Excel sheet I'm working on at the moment, I have two arrays that are dynamically linked to a website through a web query. Because of this, the two arrays have rows added or removed quite often.
I would like to have these two dynamic and evolving arrays one on top of the other with a constant offset of two rows separating them.
Example :
ARRAY 1
-Row1
-Row2
-Row3
-Blank
-Blank
ARRAY 2
Would become (if a row is added to the first array)
ARRAY 1
-Row1
-Row2
-Row3
-Row4
-Blank
-Blank
ARRAY 2
Any idea on how I could achieve this?
Thanks!