![]() |
#1
|
|||
|
|||
![]()
I am looking to create a macro that will select a line that contains a specific word. Ideally it would select all the occurrences in the whole document at once. The word would always be the same so no need for a prompt. I got started but am not sure if I a headed in the right direction. I am pretty lost when it comes to VBA. Any help would be greatly appreciated.
Sub AdjustText() ' ' AdjustText Macro ' ' Dim myRange As Range Set myRange = ActiveDocument.Range With myRange.Find .text = "Word" .Replacement.text = "" .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = False .MatchWholeWord = True .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False .Execute If .Found Then Selection.Extend Selection.Extend Selection.Extend End If End With End Sub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
tjf816 | Word VBA | 10 | 03-29-2017 05:42 PM |
![]() |
mescaL | Word VBA | 3 | 11-03-2014 10:51 PM |
![]() |
TMinnich | Word | 2 | 10-25-2013 09:38 AM |
![]() |
jgarland | Word | 22 | 01-11-2012 11:19 AM |
Select multiple value on Word 2003/2007 forms | dzn | Word | 0 | 07-19-2010 01:56 AM |