add a blank line in a letter

  • Thread starter Thread starter Guest
  • Start date Start date
Ctrl+0 is one way.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
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

Back
Top