I wanted to insert a text box as this allows for formatting.
Macro1:
Sub Macro1()
'
' Macro1 Macro
'
'
Range("B20").Select
ActiveSheet.Shapes.AddTextbox(msoTextOrientationHorizontal, 438.9130708661, _
352.1739370079, 262.1738582677, 112.1738582677).Select
Selection.ShapeRange(1).TextFrame2.TextRange.Characters.Text = _
"In considering your scores, our experience suggests that you could have some developmental requirements in order to be successful with a 360 survey"
Selection.ShapeRange(1).TextFrame2.TextRange.Characters(1, 147).ParagraphFormat _
.FirstLineIndent = 0
With Selection.ShapeRange(1).TextFrame2.TextRange.Characters(1, 147).Font
.NameComplexScript = "+mn-cs"
.NameFarEast = "+mn-ea"
.Fill.Visible = msoTrue
.Fill.ForeColor.ObjectThemeColor = msoThemeColorDark1
.Fill.ForeColor.TintAndShade = 0
.Fill.ForeColor.Brightness = 0
.Fill.Transparency = 0
.Fill.Solid
.Size = 11
.Name = "+mn-lt"
End With
Selection.ShapeRange.ScaleHeight 0.6279067645, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.ScaleWidth 0.8507463942, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.ShapeStyle = msoShapeStylePreset6
Selection.ShapeRange.TextFrame2.TextRange.Font.Bold = msoTrue
Range("A22").Select
End Sub