D
Darrell_Sarrasin via OfficeKB.com
I have this coding
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
lastrow = Cells(Rows.Count, "a").End(xlUp).Row
For Each c In Range("b2:b" & lastrow)
c.Offset(, 5) = c & " [" & c.Offset(, 2) & "]"
Next c
Application.ScreenUpdating = False
Application.Calculation = xlCalculationAutomatic
End Sub
It basically takes two cells and merges them together to make one. what I
want to do is take the post and merge the two cells together on a different
sheet.
Currently the line c.offset......... is what creates it but have been having
difficulties moving it to the otehr sheet.
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
lastrow = Cells(Rows.Count, "a").End(xlUp).Row
For Each c In Range("b2:b" & lastrow)
c.Offset(, 5) = c & " [" & c.Offset(, 2) & "]"
Next c
Application.ScreenUpdating = False
Application.Calculation = xlCalculationAutomatic
End Sub
It basically takes two cells and merges them together to make one. what I
want to do is take the post and merge the two cells together on a different
sheet.
Currently the line c.offset......... is what creates it but have been having
difficulties moving it to the otehr sheet.