Is there a way to put a footnote or something onto a textbox that tells what
page the next linked textbox is located on? I'm making a newsletter with a
story on the first page that continues on a different page.
Thanks in advance for your help.
Wes
Put a bookmark in the body text (not in the text box) where the
continuation text box is anchored. In the final line of the first text
box, place the continuation note and include a PageRef field
containing the name of the bookmark. Format it so it's distinct from
the text.
Fields inside text boxes don't update automatically. If you have only
a few text boxes, you can manually select each continuation note and
press F9 to update the fields. If there are many text boxes to update,
this macro should work, although I've sometimes seen odd results
(fields showing the wrong page numbers, when manual updates work
properly):
Sub UpdatePageRefsInTextBoxes()
Dim oTB As Shape
ActiveDocument.Repaginate
For Each oTB In ActiveDocument.Shapes
With oTB
If .Type = msoTextBox Then
.TextFrame.TextRange.Fields.Update
End If
End With
Next oTB
End Sub