Hi, WesternGal,
maybe use these instead of changing the range for each individual cell, first uses a given range, second needs you to choose the range on which it should work prior to running the macro:
Sub WesternGal_3_Range()
Dim rngCell As Range
'change the range to suit
For Each rngCell In Range("B3:H3")
With rngCell
.Value = .Text & vbCrLf & .Offset(1, 0).Text
End With
Next rngCell
End Sub
Sub WesternGal_3_Select()
Dim rngCell As Range
'select the range prior to running the macro
For Each rngCell In Selection
With rngCell
.Value = .Text & vbCrLf & .Offset(1, 0).Text
End With
Next rngCell
End Sub
Ciao,
Holger
Bookmarks