![]() |
#6
|
||||
|
||||
![]()
OK, in which case, omit the superscript attribute from the Find expression. Do note that the result if you use Replace All will be the deletion of all parentheses in the document.
Alternatively, you could use a macro like: Code:
Sub ClrFtNtParens() Application.ScreenUpdating = False With ActiveDocument.Range With .Find .ClearFormatting .Replacement.ClearFormatting .Text = "(^f)" .Forward = True .Wrap = wdFindStop .Format = False .MatchWildcards = False End With Do While .Find.Execute .Characters.First.Delete .Characters.Last.Delete .Collapse wdCollapseEnd Loop End With Application.ScreenUpdating = True End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
jaanross | Word | 5 | 02-06-2020 12:04 AM |
Extract numbers from parentheses and add them up | pokeyarw | Excel | 9 | 05-06-2019 09:50 PM |
![]() |
RussBell | Mail Merge | 2 | 10-28-2016 05:51 AM |
![]() |
Stacy | Excel | 2 | 09-12-2014 07:03 AM |
Macro to find text only footnote numbers | TimFromPhx | Word VBA | 7 | 04-10-2014 07:05 PM |