Hey guys
So, at work I'm working on a stock take type program, and I've *almost* got it working, but hit a snag. The spreadsheet I have at the moment ends up working out a bunch of stuff, and at the end, spits out a huge array of text. The issue I'm facing is that the array is dynamic (using references like A2# to get the array regardless of the size etc), and it's causing a few issues. I end up with a certain number of columns (which I can work out, but let's say 3 for now). I want to have another column at the end that combines all of the text in that row, preferably with a comma between them.
So, for example, in A1, B1 and C1 I have "Hello", "World", "Test". In D1, I want something that spits out "Hello,World,Test" by the end of it. The issue is that our version of Excel is all web based, so I can't use VBA or anything for it.
Does anyone have any ideas on how I can make this work? Concat doesn't work, as when I use concat(A1#), it makes one cell with all the values in column A, then column B, then C. I also can't seem to get indirect to work with the dynamic ranges - any time I use # in a reference for indirect, it spits out an error
If you have any questions please don't hesitate to ask!
Thanks in advanced!
So, at work I'm working on a stock take type program, and I've *almost* got it working, but hit a snag. The spreadsheet I have at the moment ends up working out a bunch of stuff, and at the end, spits out a huge array of text. The issue I'm facing is that the array is dynamic (using references like A2# to get the array regardless of the size etc), and it's causing a few issues. I end up with a certain number of columns (which I can work out, but let's say 3 for now). I want to have another column at the end that combines all of the text in that row, preferably with a comma between them.
So, for example, in A1, B1 and C1 I have "Hello", "World", "Test". In D1, I want something that spits out "Hello,World,Test" by the end of it. The issue is that our version of Excel is all web based, so I can't use VBA or anything for it.
Does anyone have any ideas on how I can make this work? Concat doesn't work, as when I use concat(A1#), it makes one cell with all the values in column A, then column B, then C. I also can't seem to get indirect to work with the dynamic ranges - any time I use # in a reference for indirect, it spits out an error
If you have any questions please don't hesitate to ask!
Thanks in advanced!