Share via

How do I remove extra space between endnotes?

Anonymous
2019-08-19T19:32:30+00:00

Hello,

I need to know how to remove extra space between some of my document's endnotes. I have tried what I found online, which is:

  1. Go into draft mode
  2. Click References
  3. Click show notes
  4. Click on the footnote in question in the text.
  5. In the drop-down menu, select Endnote Continuation Separator
  6. Remove the extra spaces and go back into Print View.

My problem is with step 6 - I see the light blue Paragraph symbols that mark where the extra space is. But I cannot delete them.

What should I do?

Thank you,

Eli

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Doug Robbins - MVP - Office Apps and Services 323K Reputation points MVP Volunteer Moderator
2019-08-20T00:18:01+00:00

There are some "spurious" endnotes in the document that can be removed by running a macro containing the following code

With ActiveDocument

    For i = .Endnotes.Count To 1 Step -1

        If .Endnotes(i).Range.Text = "" Then

            .Endnotes(i).Delete

        End If

    Next i

End With

Was this answer helpful?

2 people found this answer helpful.
0 comments No comments

8 additional answers

Sort by: Most helpful
  1. Anonymous
    2019-08-20T20:15:37+00:00

    You are welcome. Let us know if there's anything else. If you don't have any more questions, feel free to choose a rating. Thanks! (Five stars means helpful, one star means not helpful.)

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2019-08-20T17:20:35+00:00

    Thank you.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2019-08-19T20:37:21+00:00

    Thank you!

    Here is the OneDrive link:  https://1drv.ms/w/s!Amh2KT3bdGrcdOKOmoS5gow0bsA

    Here is a screenshot from the endnotes that shows the extra space that I'm talking about:

    https://www.dropbox.com/s/zgxtc06pra9fg2c/problem.png?dl=0

    Best,

    Eli

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2019-08-19T19:37:18+00:00

    Hi Eli,

    If you want, save a sample document with the problem on OneDrive or Dropbox and paste a link here. Remove any confidential or sensitive information first. I or someone else can take a look at it.

    See https://answers.microsoft.com/en-us/windows/for...

    A screenshot might help as well. I'm not sure what you are seeing as "extra" space.

    Here's how to post a screenshot:

    https://answers.microsoft.com/en-us/windows/for...

    (Per Bob Jones (aka Cybertaz), the parts about screen capture only apply to Windows. On the Mac you would use Cmd+Shift+4. See his screenshot for various shortcuts. https://filestore.community.support.microsoft.c... )

    This forum is a user-to-user support forum. I am a fellow user.

    I hope this information helps.

    Please let me know if you have any more questions or require further help.

    You can ask for more help by replying to this post (Reply button below).

    Regards

    Was this answer helpful?

    0 comments No comments