![]() |
|
![]() |
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
![]()
You can also do this using a nested .Find method:
Code:
Sub ScratchMacro() 'A basic Word macro coded by Greg Maxey Dim oRng As Range, oRngE As Range Set oRng = ActiveDocument.Range With oRng.Find .Text = "Research Refs" .Font.Bold = True While .Execute Set oRngE = oRng.Duplicate oRngE.End = ActiveDocument.Range.End With oRngE.Find .Text = "§" .Font.Bold = True If .Execute Then oRngE.Start = oRng.Start oRngE.Delete End If End With oRng.Collapse wdCollapseEnd Wend End With lbl_Exit: Exit Sub End Sub |
![]() |
Tags |
word vba macro |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Burt | Word | 6 | 04-06-2019 09:09 AM |
![]() |
Soenke | Word VBA | 4 | 09-01-2016 08:55 AM |
Bold each line of text that starts with a recurring symbol | qubie | Word | 6 | 08-26-2016 07:10 AM |
![]() |
footer-assistance | Word | 1 | 06-29-2015 03:49 AM |
Format Bold in one line makes all lines bold | Nitte | Word | 2 | 02-07-2013 12:34 AM |