Can you have a column of data moved to a single cell with commas separating the values that were in the column? Kind of reverve text to columns.
ie;
1
2
3
4
5
1,2,3,4,5 in a single cell.
|
Can you have a column of data moved to a single cell with commas separating the values that were in the column? Kind of reverve text to columns. ie;
|
||||
|
|
||||
|
|
|
You could use the concatenate function and alternate between cells and the string
|
|||
|
|
|
Using a User Defined Function will much more flexible than hard-coding cell by cell
use your new formula like the one in the D6 cell snapshot You can use more complex formulae such as the one in D7
|
|||
|
|
|
If it's a looong column of values, you can use the CONCATENATE function, but to do it quickly is a little tricky. Assuming the cells were A1:A10, in B9 and B10 put these formulas: B9: =A9&","&B10 B10: =A10 Now, copy B9 and paste in all the cells UP to the top of column B. In B1 you will now have you full result. Copy > Paste Special > Values. |
|||
|
|