harisonford
New Member
- Joined
- May 27, 2011
- Messages
- 17
how to combine two coloums while the rows are not serial
Would a VB solution be acceptable? Here is a macro that should do what you want...coloum 1 coloum 2 coloum 3 must have
what is in 1+2
c1 c2 c3
row 1 a d ad
row 4 b c bc
row 10 c b cb
row 15 d a da
this must be done with one time for all rows together
Sub SkippedRowsConcatenate()
Dim R As Range
For Each R In Columns("A").SpecialCells(xlCellTypeConstants)
R.Offset(0, 2).Value = R.Value & R.Offset(0, 1).Value
Next
End Sub