How to put CRLF into ms word DOCVARIABLE or DOCPROPERTY

273 Views Asked by At

Is there any way to create (and display) multi-lined DOCVARIABLE without VBA? I.e. "One\r\nTwo\r\nThree" renders into One Two Three

1

There are 1 best solutions below

3
On

Please try the following:

{ DOCVARIABLE  TestVar  \* MERGEFORMAT }


Sub DocVars()
    Dim arr As Variant, joinSting As String
    arr = Array("One", "Two", "Three", "Four", "Five")
    joinSting = Join(arr, vbNewLine)
    ActiveDocument.Variables("TestVar").Value = joinSting
End Sub

Output: