View Single Post
 
Old 09-27-2023, 12:12 AM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,166
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

OK, it appears that we are just getting the position on the first page.

Can you explain what you need this info for? Perhaps there is a better way to achieve whatever point you have for needing this info. For instance you can audit the page and position of each footnote and surmise that the separator appears a static distance above each top footnote on the page.
Code:
Sub aTest()
  Dim aFN As Footnote
  For Each aFN In ActiveDocument.Footnotes
    Debug.Print aFN.Index, aFN.Range.Information(wdActiveEndPageNumber), aFN.Range.Information(wdVerticalPositionRelativeToPage)
  Next aFN
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote