Thursday, September 29, 2016

[Solved] Display just endnotes from multiple documents in a single document?

Display just endnotes from multiple documents in a single document?

I have a large document that due to printing specifications has been broken out into individual sections (as separate word docs).
 I have already used RD field codes to enable me to link all the documents to a single TOC.
 I'm wondering if there is some
sort of procedure that would allow me to do the same thing for our endnotes.
Is there a way to display endnotes from multiple documents at the end of a single word document without merging the files together?

Keys to the Problem Display just endnotes from multiple documents in a single document?

Download SmartPCFixer for Free Now

You could use a modification of the following code, together with the code for it to operate on a batch of documents to transfer the text of all of the end-notes to a new document.
 
' Macro created 29/09/99 by Doug Robbins to replace endnotes with textnotes at end of document
' to replace the endnote reference in the body of the document with a superscript number.
    Dim aendnote As Endnote
    For Each aendnote In ActiveDocument.Endnotes
        ActiveDocument.Range.InsertAfter vbCr & aendnote.Index & vbTab & aendnote.Range
        aendnote.Reference.InsertBefore "a" & aendnote.Index & "a"
    Next aendnote
    For Each aendnote In ActiveDocument.Endnotes
        aendnote.Reference.Delete
    Next aendnote
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find.Replacement.Font
        .Superscript = True
    End With
    With Selection.Find
        .Text = "(a)([0-9]1,)(a)"
        .Replacement.Text = "\2"
        .Forward = True
        .Wrap = wdFindContinue
        .Format = True
        .MatchWildcards = True
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
 
For some code to perform a batch process, See the article "Find & ReplaceAll on a batch of documents in the same folder” at:
http://www.word.mvps.org/FAQs/MacrosVBA/BatchFR.htm
 
On thing that you will need to consider is how the endnotes should be numbered.

Run CHKDSK
  • Go to the Start button.
  • In the Search box, type "cmd" (without quotes) and press Enter.
  • At the command prompt, type "chkdsk /r /f" (without quotes) and press Enter.
  • Restart your computer.

Another Safe way to Repair the Problem: Display just endnotes from multiple documents in a single document?:

How to Fix Display just endnotes from multiple documents in a single document? with SmartPCFixer?

1. Download SmartPCFixer . Install it on your system.  Click Scan, and it will perform a scan for your computer. The junk files will be shown in the scan result.

2. After the scan is done, you can see the errors and problems which need to be repaired.

3. When the Fixing part is finished, your computer has been speeded up and the errors have been removed


Related: Way to Update & Download SONY SVE14A2X1EH Wireless State Device driver,How to Update & Download SONY SVS1511X9RB Graphics Driver for D2 (Intel) v.9.17 - 9.17.10.2828,Method to Download SONY VGN-CR290N Realtek High Definition Audio Driver v.5.10.0.5433,Download SONY VGN-FS710/W Utilities DLL Update v.6.4.0.06290 driver,Method to Update & Download SONY VGN-NR460E/P Intel Graphics Media Accelerator Driver v.6.14.10.4847,How to Fix Error 0x0000c1f5 SoluciĆ³n?,Error 0x80071a91 Win7 Fix Patch,Error 0x800ccc60 Windows Live Mail [Solved],Error Message 0x800ccc79 Outlook 2000 Fix,What is Error 0xc1ab0001?,[Answered] x64 saplugin dll,How to Fix Problem - Kb943729 Download?,Troubleshooting: Bccode D1 Error,Java Runtime Tech Support,Troubleshooting: ERROR NO SUCH GROUP Error,Solution to ashoutxt.dll Missing Error,Solution to cxcore096.dll Missing Error,Where can I Find dsauth.dll File,How to Fix msde.dll Not Found Error,Best Method to Fix psizewizres.dll Error
Read More: Troubleshoot:Does Microsoft Intellipoint Pro 6.3 mouse and keyboard work with Windows 8.1?,How to Fix - Don't want Instat Messenger?,does anyone know what the dialog means \"System.Media.FontFamily' threw an exception windows is checking for a solution? [Anwsered],Troubleshooting:do i need to install security updates for Visual C++ when I don't use Visual Studio Error,[Anwsered] Does streaming between computers on a home network use the data plan,Data validation question. Maintaining and updating named ranges.,Desktop Gadget Gallery on Windows 7,delete empty rows,Deleting a page and also how can I copy an exact page lay out on a new page,Date Formula for 1st Sunday of each Month (3rd to 9th)

No comments:

Post a Comment