Sub Test3b()
Dim p As Long
Dim i%
[B1:B10] = Application.UserName
[C1] = 1600: [C1:C10].DataSeries
For i = 1 To 10
Cells(i, 1) = Cells(i, 2) & Chr(10) & Cells(i, 3)
p = InStr(1, Cells(i, 1), Chr(10))
Cells(i, 1).Characters(p, 9 ^ 9).Font.Size = 8
Cells(i, 1).Characters(p, 9 ^ 9).Font.Italic = True
Next
End Sub