Hi, I'm trying to write a macro (in Office 2016) that simply pastes "COMMENT - ", except that the word "comment" is highlighted yellow. I've gotten as far as below but haven't been able to figure out how to highlight the string Comment but not the rest. For clarity, I'm not looking to highlight every instance of the string in the document. Any suggestions are greatly appreciated -- I'm just starting to learn. Thanks!

Sub Comment()


    Dim Comment As String
    Comment = "COMMENT"
    Selection.TypeText Text:=Comment & " - "


End Sub