add a blank line in a letter

A

alborg

If you wish to do it with VBA, just add a vbCrLf to your line of code. This
example puts in 6 lines automatically after the bookmark text is added:

Application.ActiveDocument.Bookmarks("bkcombo3").Range.Text =
IIf(IsNull([dx3]) Or Len([dx3]) = 0, ".", [dx3]) & vbCrLf & vbCrLf & vbCrLf &
vbCrLf & vbCrLf & vbCrLf
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top