I have been asked to add a text box to a global Macro and was able to find a small bit of information on the Internet as to how this can be done, but I can’t find information anywhere as to how to insert a paragraph and bold the writing within the text box. Also, it seems the Macro recorder will not work when trying to capture the steps of inserting a text box or shape. I know this is something simple, but it is difficult when you don’t know how to do it and can’t find the information anywhere. The code I have is below. I appreciate any help you can give me, as this is a doctor that wants the text box added to the top of her report format. She also wants a picture added, so I’m sure I will be asking for help on that after I get this issue resolved. :confused:
Sub test2()
Dim Box As Shape
Set Box = ActiveDocument.Shapes.AddTextbox( _
Orientation:=msoTextOrientationHorizontal, _
Left:=75, Top:=75, Width:=300, Height:=75)
Box.TextFrame.TextRange.text = “This is my text that I would like bolded, with a new line of text that follows.”
End Sub