Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Janelle Janelle is offline
external usenet poster
 
Posts: 10
Default Superscript footnotes after importing from Word Perfect

After importing a large document (500 pages) from WordPerfect, the footnote
numbers are not superscripted. How do I convert them without having to do
them one at a time?
--
Janelle
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Henk57[_142_] Henk57[_142_] is offline
external usenet poster
 
Posts: 1
Default Superscript footnotes after importing from Word Perfect


I am afraid you cannot do this automatically. Well, if your document
doesn't contain any numbers (figures and tables are probably
numbered?), you could replace the numbers in the body text by
supersript numbers globally but your connection between the footnote
marker (which you want to superscript) and the footnote text is
probably broken so any further progressing involving new footnotes will
not auto-update your footnote references. Janelle;2519957 Wrote:
After importing a large document (500 pages) from WordPerfect, the
footnote
numbers are not superscripted. How do I convert them without having to
do
them one at a time?
--
Janelle





--
Henk57
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
macropod macropod is offline
external usenet poster
 
Posts: 1,002
Default Superscript footnotes after importing from Word Perfect

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
--
macropod
[MVP - Microsoft Word]
-------------------------

"Janelle" wrote in message ...
After importing a large document (500 pages) from WordPerfect, the footnote
numbers are not superscripted. How do I convert them without having to do
them one at a time?
--
Janelle


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to enable Footnotes in Word 2003 when View Footnotes is OFF? Leechado Microsoft Word Help 1 July 5th 06 03:43 PM
superscript or subscript in word? floydfan Microsoft Word Help 1 May 25th 06 06:14 AM
how to make footnotes appear in superscript automatically sue Microsoft Word Help 2 March 7th 06 11:50 PM
Find should search text AND footnotes when starting in footnotes Ted Sichelman Microsoft Word Help 0 November 10th 05 07:42 PM
need to use ^ as subscript with word over it in superscript Mary Ellis Microsoft Word Help 1 April 10th 05 12:02 AM


All times are GMT +1. The time now is 01:53 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"