Thomas3601
Technical User
- Jun 3, 2013
- 5
I have been through the forums looking for the “right” answer to my query, but I have yet to find it, so here is my situation.
I am working on creating a master document/series of documents that I can refer to utilizing “INCLUDETEXT”. I have a few websites that I have bookmarked for their reference, but I am not getting the response from the document that I am after. When I create my “INCLUDETEXT” statement, I either get a blank response after hitting Alt+F9 or more recently I get “Document 1” as the response. The information I am trying to display is NOT “Document 1”.
My statement reads
{ INCLUDETEXT "C:\(Filepath)\How to Change On-Call Forwarding.docx" }
Once document I read on this even suggested putting “Summary” behind [How to Change On-Call Forwarding.docx"] to read { INCLUDETEXT "C:\(Filepath)\How to Change On-Call Forwarding.docx" Summary }. Either way I do this, I am now only receiving the report “Document 1” when I hit Alt+F9.
Do I need to bookmark my original document(s) before I try creating the link or do I just need to have the document(s) created period? I say “document(s)” because we will have multiple links per page since we are repeating a lot of information per task, so instead of copy/paste the same information in each document that may later change. It is easier to copy/paste once per document in the event we have 35 docs that hold the same initial information that can change; then the change is made on the parent doc and populated to the children docs as they are used.
Additionally, I have been reading through the different postings in the forums looking for the “right” answer for my issue. I noticed in one posting macropod posted a macro to update and unlock fields from the parent source to the child document. This macro is:
Sub AutoNew()
ActiveDocument.Fields.Update
ActiveDocument.Fields.Unlink
End Sub
What if I wanted the child document to update every time it is opened? Would I just leave this out or would I omit the second “active” line?
Much appreciated,
Tom
I am working on creating a master document/series of documents that I can refer to utilizing “INCLUDETEXT”. I have a few websites that I have bookmarked for their reference, but I am not getting the response from the document that I am after. When I create my “INCLUDETEXT” statement, I either get a blank response after hitting Alt+F9 or more recently I get “Document 1” as the response. The information I am trying to display is NOT “Document 1”.
My statement reads
{ INCLUDETEXT "C:\(Filepath)\How to Change On-Call Forwarding.docx" }
Once document I read on this even suggested putting “Summary” behind [How to Change On-Call Forwarding.docx"] to read { INCLUDETEXT "C:\(Filepath)\How to Change On-Call Forwarding.docx" Summary }. Either way I do this, I am now only receiving the report “Document 1” when I hit Alt+F9.
Do I need to bookmark my original document(s) before I try creating the link or do I just need to have the document(s) created period? I say “document(s)” because we will have multiple links per page since we are repeating a lot of information per task, so instead of copy/paste the same information in each document that may later change. It is easier to copy/paste once per document in the event we have 35 docs that hold the same initial information that can change; then the change is made on the parent doc and populated to the children docs as they are used.
Additionally, I have been reading through the different postings in the forums looking for the “right” answer for my issue. I noticed in one posting macropod posted a macro to update and unlock fields from the parent source to the child document. This macro is:
Sub AutoNew()
ActiveDocument.Fields.Update
ActiveDocument.Fields.Unlink
End Sub
What if I wanted the child document to update every time it is opened? Would I just leave this out or would I omit the second “active” line?
Much appreciated,
Tom