![]() |
|
|
|
#1
|
||||
|
||||
|
You could use:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim i As Long
i = 0
With ActiveDocument.Range
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "[0-9]@>"
.Font.Superscript = True
.Replacement.Text = ""
.Format = True
.Forward = True
.Wrap = wdFindStop
.MatchWildcards = True
.Execute
End With
Do While .Find.Found
.Text = i
i = i + 1
.Collapse wdCollapseEnd
.Find.Execute
Loop
End With
Application.ScreenUpdating = True
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
How to custom Date Picker CC format with Ordinal and superscript it!
|
areriff | Word VBA | 5 | 08-21-2022 04:28 PM |
| Insert superscript into a textbox | Deltaj | Word VBA | 3 | 11-30-2014 04:23 PM |
Replace with superscript in Word 2013
|
docbike | Word | 4 | 04-07-2014 05:23 PM |
| Combining Files--Superscript problem | lindajacques | PowerPoint | 0 | 01-06-2011 01:20 PM |
Inserting Date, formatting to superscript and subscript
|
louq | Word | 1 | 10-22-2009 09:29 AM |