Hello hbsqn,
Welcome to the Forum!
Add these 2 macros to your Workbook. You can then assign shortcut keys to each macro using the Macro Dialog. Press ALT+F8 to display it. Select the macro and then click the button Options... to assign the shortcut.
Sub CombineWithSpace()
Dim A As Range
Dim Cell As Range
Dim FirstCell As Range
Dim I As Long
For Each A In Selection.Areas
If FirstCell Is Nothing Then Set FirstCell = A.Cells(1, 1)
For I = 1 To A.Cells.Count
If A.Item(I) <> FirstCell Then
FirstCell = FirstCell & " " & A.Item(I)
A.Item(I) = ""
End If
Next I
Next A
End Sub
Sub CombineWithNoSpace()
Dim A As Range
Dim Cell As Range
Dim FirstCell As Range
Dim I As Long
For Each A In Selection.Areas
If FirstCell Is Nothing Then Set FirstCell = A.Cells(1, 1)
For I = 1 To A.Cells.Count
If A.Item(I) <> FirstCell Then
FirstCell = FirstCell & A.Item(I)
A.Item(I) = ""
End If
Next I
Next A
End Sub
Adding the Macro
1. Copy the macro above pressing the keys CTRL+C
2. Open your workbook
3. Press the keys ALT+F11 to open the Visual Basic Editor
4. Press the keys ALT+I to activate the Insert menu
5. Press M to insert a Standard Module
6. Paste the code by pressing the keys CTRL+V
7. Make any custom changes to the macro if needed at this time.
8. Save the Macro by pressing the keys CTRL+S
9. Press the keys ALT+Q to exit the Editor, and return to Excel.
Bookmarks