
Hi Jade,
Thank you for reaching out to Microsoft Community. We're happy to assist you.
Unfortunately, Microsoft Publisher does not natively support Word’s endnotes or footnotes, so when you copy or import a Word document into Publisher, endnote formatting and linking are lost — this includes both the superscript numbers in the main text and the corresponding endnote text and numbering.
That said, here are workaround options to transfer a Word document with endnotes into Publisher without losing the content or clarity, even if the automatic linking is lost:
Best Workaround: Manual Conversion with Superscript Referencing
Step 1: Prepare the Document in Word
- Open your Word document.
- Go to References > Show Notes.
- Copy the entire set of endnotes from the bottom of the document into a new Word document or a section at the end of your main content.
Step 2: Convert Endnotes to Static Text
To preserve the numbering and superscripts:
- Press Alt + F11 to open the VBA editor in Word.
- Use the following macro to convert all endnotes into static superscript references:
Sub ConvertEndnotesToText()
Dim i As Integer
For i = ActiveDocument.Endnotes.Count To 1 Step -1
Dim noteText As String
noteText = ActiveDocument.Endnotes(i).Range.Text
ActiveDocument.Endnotes(i).Reference.InsertAfter "[" & i & "]"
ActiveDocument.Endnotes(i).Delete
Selection.EndKey Unit:=wdStory
Selection.TypeParagraph
Selection.TypeText Text:="[" & i & "] " & noteText
Next i
End Sub
- This replaces each endnote reference with a static number like
[1]
and appends the full note at the end of the document.
Step 3: Copy into Publisher
- In Word, select all your updated content (including the static “[1]” references and the new endnote section).
- Copy (Ctrl+C) and paste into Publisher (Ctrl+V).
This way, you preserve the endnote numbering and include all the note text, even though it won’t be automatically linked.
I hope these solutions can help you to solve this problem. If you need any further assistance or clarification, feel free to reach out—we're here to help. Thank you very much for your understanding and your cooperation.
Best regards,
Clover-L - MSFT | Microsoft Community Support Specialist.