i want to add a line break after selection word 19
Sub cloze()
'
' Macro2 Macro
'
Selection.InsertBefore Text:="{{c1::"
Selection.InsertAfter Text:="}}"
'
End Sub
i want to add a line break after selection
i want something like Selection.InsertAfter Text:="line break"
but this adds text not an actual line break
|