Thread
:
Transform columns with VBA
View Single Post
#
5
Posted to microsoft.public.excel.programming
Harlan Grove
external usenet poster
Posts: 733
Transform columns with VBA
"Alan Beban" wrote...
For i = 1 To 5
Range("B" & i).Value = Range("A" & i).Value & _
Range("A" & i + 1).Value
Next
....
Range("B1:B5").Value = Evaluate("=A1:A5&A2:A6")
would be an alternative.
Reply With Quote
Harlan Grove
View Public Profile
Find all posts by Harlan Grove