Auto adjust a paragraph when text field is empty

C

chuckles

How can I make the document adjust itself (move up a space) if I leave a text
field empty?
 
D

Doug Robbins - Word MVP

Run a macro with the following commands on exit from the text field (assumed
to be a FormField as used in a protected document

With ActiveDocument
If Trim(.FormFields("BookmarknameofTextFieldthatmaybeEmpty").Result) =
"" Then
.Unprotect
.FormFields("BookmarknameofTextFieldthatmaybeEmpty").Range.Paragraphs(1).Range.Delete
.Protect wdAllowOnlyFormFields
End If
End With



--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

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