I have a column of values and would like to get in one field a comma-concatenated string of those column. I did it indirectly with the following technique:
- Suppose my list is A1:A50
- In column C, for C1, I used
=A1&","
- For C2 I used
=C1&A2&","
- Then I auto-filled down
- And so in C60 I had the whole comma-concatenated list of values.
Now, while this did the job, it's very primitive, making no use of any specialized formulas (if one exists for such a job).
I forgot to mention that I have already tried =TRANSPOSE(A1:A100) which is suggested everywhere on the internet, but the formula returns an error (probably due to my data having double-quotes)...
[map_lookup("getFireplace", {fireplace[1]})]
[map_lookup("getWc", {wc[1]})]
[map_lookup("getElevator", {elevator[1]})]
[map_lookup("getDevices", {devices[1]})]
[map_lookup("getStorage", {storage[1]})]
[map_lookup("getAc", {ac[1]})]
[map_lookup("getFurnitured", {furnitured[1]})]
This is a small extract of the column data I want to get as a comma-concatenated string.
So is there any more advanced/short way to achieve that? TIA