I'm rusty as hell with VBA and am struggling with a basic script. What I need to do is have a script to select range of cells and combine and merge that range into the first cell of the range and separate with line break. For example, if data is as follows:
A1: Apple
A2: Ball
A3: Chair
I'd like to prompt the user to select a range (A1:A3 in this case), then concatenate the values in that range with a line break between each value, merge the same range that was selected, then paste the resulting concatenated values into that merged cell. So in this case, A1:A3 is merged into one cell with the following value:
Apple
Ball
Chair