Hi.
I would like to do a Join on a part of an array. My code would look like this:
Obviously the strItemsArray(2001:3000) bit is wrong. Is there a correct way to do this, besides writing a UDF which loops through the array, stores the selected data into a different array and returns the new array?
I'm using Acces 2007.
Thanks a lot in advance.
I would like to do a Join on a part of an array. My code would look like this:
Code:
strJoinedVars(1) = Join(strItemsArray(1:1000), ",")
strJoinedVars(2) = Join(strItemsArray(1001:2000), ",")
strJoinedVars(3) = Join(strItemsArray(2001:3000), ",")
I'm using Acces 2007.
Thanks a lot in advance.