Hi I wrote this to concatenate cells but keep one of them bold. Is there a loop i can use to copy it down so that they all chaneg instead of writing it longhand?
Thanks,
KC
Public Sub test1()
Do
Range("J2").Select 'change the cell as you like
ActiveCell.Value = " " & Range("C2") & " " & Range("D2") & " " & Range("E2")
With ActiveCell.Characters(Start:=2, Length:=Len(Range("C2"))).Font
.Bold = True
End With
Range("K2").Select
Loop Until IsEmpty(ActiveCell.Offset(0, 1))
End Sub
Thanks,
KC
Public Sub test1()
Do
Range("J2").Select 'change the cell as you like
ActiveCell.Value = " " & Range("C2") & " " & Range("D2") & " " & Range("E2")
With ActiveCell.Characters(Start:=2, Length:=Len(Range("C2"))).Font
.Bold = True
End With
Range("K2").Select
Loop Until IsEmpty(ActiveCell.Offset(0, 1))
End Sub