concatenation of arrays
Posted by banister on August 07, 2001 5:59 PM
Is there any way to concatenate an array?
Example
A1:A4 = "a", "b", "c", "d"
B1:B4 = 1,2,1,2
In it's simplest form, I just need to know how to do an equivalent to
{=concatenate(A1:A4)}
giving: "abcd"
[which doesn't actually work.]
In the end, I want to do the equivalent of
{=concatenate(if(B1:B4=1, A1:A4, " "))}
giving: "a c "
[which also doesn't actually work]