Hi Janelle,
It sounds like your footnote numbers have been converted to plain text and are no longer linked to the corresponding footnote text.
Evidently the converter you used is 'challenged'. You might have better luck with another converter or if you convert the
WordPerfect document into an intermediate format (eg RTF) that Word understands, then open that file with Word.
Alternatively, if you go through the document you now have and superscript the actual footnote numbers in the body of the document
(but not any other numbers), the following macro will then convert your footnote numbers into proper footnotes linked to the
corresponding footnote text:
Sub ReLinkFootNotes()
Dim i As Integer
Dim j As Integer
Dim k As Integer
Application.ScreenUpdating = False
With Selection
.Bookmarks.Add Range:=Selection.Range, Name:="FootNotes"
k = Paragraphs(1).Range.Words(1) – 1
j = k
For i = 1 To .Paragraphs.Count
If .Paragraphs(i).Range.Words(1) = j + 1 Then
j = j + 1
End If
Next i
End With
For i = k + 1 To j
StatusBar = "Finding Footnote Location: " & i
ActiveDocument.Select
With Selection.Find
.Forward = True
.Font.Superscript = True
.Text = i
.MatchWholeWord = False
.Execute
If .Found = True Then
.Parent.Select
With Selection
.Delete
.Footnotes.Add Range:=Selection.Range, Text:=""
End With
End If
End With
Next i
With ActiveDocument.Bookmarks("FootNotes").Range
For i = k + 1 To j
StatusBar = "Transferring Footnote: " & i
With .Paragraphs(1).Range
.Cut
With ActiveDocument.Footnotes(i).Range
.Paste
.Words(1).Delete
.Characters(.Characters.Count).Delete
.Style = "Footnote Text"
End With
End With
Next i
On Error Resume Next
.Bookmarks("FootNotes").Delete
End With
Application.ScreenUpdating = True
End Sub
Cheers