I am working through my first VBA book and would appreciate if someone would point me in the right direction. How would I transfer a range of rows into a single cell with carriage returns? I would then like to repeat this action for all ranges in the column.
I think I need to:
- find the first cell with a value in the column
- verify that the next row is not empty
- find the last cell in the range
- perform “the operation” on the range


Following up on my comments. here is a very simple way to achieve what you want.