ststern45
Well-known Member
- Joined
- Sep 17, 2005
- Messages
- 976
- Office Version
- 365
- 2010
- Platform
- Windows
Bill Jelen has a Mr Excel video that has the following code
Function ConcatenateRange(rCells As Range)
Dim vTemp As Variant
Application.Volatile
For Each vTemp In rCells
ConcatenateRange = ConcatenateRange & vTemp & " "
Next vTemp
End Function
If I currently have a cell range from A20 through A26 which is what I have now.
Is it possible to change the code where it concatenates cell A26 1st then A25, A24, A23, A22, A21, A20?
Thanks in advance!!
Function ConcatenateRange(rCells As Range)
Dim vTemp As Variant
Application.Volatile
For Each vTemp In rCells
ConcatenateRange = ConcatenateRange & vTemp & " "
Next vTemp
End Function
If I currently have a cell range from A20 through A26 which is what I have now.
Is it possible to change the code where it concatenates cell A26 1st then A25, A24, A23, A22, A21, A20?
Thanks in advance!!