![]() |
|
#13
|
||||
|
||||
|
Not tested in the Mac version, but try
Code:
Sub Macro1()
Dim oRng As Range
Dim strText As String
Dim i As Long
Set oRng = ActiveDocument.Range
i = 1
With oRng.Find
Do While .Execute(FindText:=" {", _
MatchWildcards:=False)
oRng.MoveEndUntil Chr(46)
If oRng.Characters.Last = "}" Then
oRng.End = oRng.End + 1
ActiveDocument.Footnotes.Add oRng, CStr(i), oRng.Text
oRng.Text = ""
i = i + 1
End If
oRng.Collapse 0
Loop
End With
lbl_Exit:
Set oRng = Nothing
Exit Sub
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
| Tags |
| footnotes, vba |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Word 2013 does not search text in footnotes unless I first click in a footnote
|
amz | Word | 1 | 11-18-2015 01:56 PM |
word 2007 - footnotes and text box
|
glggluig | Word | 1 | 08-10-2014 04:09 AM |
| Putting text in color shapes | dianabanana | Word | 1 | 04-07-2014 08:07 PM |
Putting text to Excel
|
Leandro | Office | 2 | 03-01-2012 11:51 PM |
| Selecting the macro document | lars | Word VBA | 0 | 08-19-2010 06:06 AM |