indi visual
Member
Dim C As Range
Range("A2").Select
For Each C In Range("A2", Selection.End(xlDown))
C.Value = ActiveCell.Offset(0, 1).Value & " " & ActiveCell.Offset(0, 2).Value & " " & C.Value
Next C
I'm using this to place the value of B & C in front A.
So it will look like A B C.
This code works; however, because B contains numbers, how do I get those numbers to auto fill down in a series like.
AB1C
AB2C
AB3C etc..
right now they look like this:
AB1C
AB1C
AB1C ..all the same and so forth
In B they're all sequenced properly, but as soon as I merge them over they all return back to 1 all the way down again.
If anyone has a better way to merge text into one column all together I will scrap this idea and go with yours.
Range("A2").Select
For Each C In Range("A2", Selection.End(xlDown))
C.Value = ActiveCell.Offset(0, 1).Value & " " & ActiveCell.Offset(0, 2).Value & " " & C.Value
Next C
I'm using this to place the value of B & C in front A.
So it will look like A B C.
This code works; however, because B contains numbers, how do I get those numbers to auto fill down in a series like.
AB1C
AB2C
AB3C etc..
right now they look like this:
AB1C
AB1C
AB1C ..all the same and so forth
In B they're all sequenced properly, but as soon as I merge them over they all return back to 1 all the way down again.
If anyone has a better way to merge text into one column all together I will scrap this idea and go with yours.