Way to automate string creation from values in an Excel spreadsheet?
August 5, 2006 6:59 AM
Subscribe
Way to automate string creation from values in an Excel spreadsheet?
I have a large spreadsheet that I need break into parts and turn each part into a continuous string with each value separated by a comma- so essentially turn a list of
ABC1234
ABC4543
ABC5643
into: ABC1234,ABC4543,ABC5643
Any thoughts on how I can automate this process?
posted by mhaw to computers & internet (6 comments total)
1 user marked this as a favorite
=A1&A2&A3&...&A20
If you need to deal with a much larger amount, you could do it in a macro, but be aware that the character limit for a cell is 32,767 characters. Only 1,024 display in a cell; all 32,767 display in the formula bar.
posted by odinsdream at 7:19 AM on August 5, 2006