View Single Post
 
Old 11-29-2016, 08:33 AM
gebobs gebobs is offline Windows 7 64bit Office 2010 64bit
Expert
 
Join Date: Mar 2014
Location: Atlanta
Posts: 837
gebobs has a spectacular aura aboutgebobs has a spectacular aura about
Default

You could have a calculation of some sort at the end of each row which concatenates all the rows with the separator of your choice.

Say you have the Bob, Jim, and Tom in Row 1, A through C:

Code:
=CONCATENATE(A1," ",B1," ",C1)
will return Bob Jim Tom. Alternatively, you can use the CHAR function to insert something other than a space or just type something else in quotes that suits you. You'll have to experiment with what pastes and doesn't.
Reply With Quote