Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 09-08-2018, 04:02 PM
macropod's Avatar
macropod macropod is offline Select pagagraphs between two words and run macro Windows 7 64bit Select pagagraphs between two words and run macro Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Try something along the lines of:
Code:
Sub Find_AFI_Ref()
With ActiveDocument.Range
  With .Find
    .ClearFormatting
    .Replacement.ClearFormatting
    .Text = "References*Abbreviations and Acronyms"
    .Replacement.Text = ""
    .Forward = True
    .Format = False
    .MatchWildcards = True
    .Wrap = wdFindStop
    .Execute
  End With
  If .Find.Found = True Then
    .Start = .Paragraphs.First.Range.End
    .End = .Paragraphs.Last.Range.Start
    Call Format_AFI_References(.Duplicate)
  End If
End Sub
Note how the code passes the relevant range to Format_AFI_References, which you would now code as:
Code:
Sub Format_AFI_References(Rng as Range)
With Rng
…
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Select pagagraphs between two words and run macro Attempting to find text, select words before it, and format the entire selection KeviM Word VBA 1 04-07-2017 05:36 PM
Select pagagraphs between two words and run macro How to select all incorrect words in Word at once Slavagl Word 2 03-23-2017 11:15 PM
Select pagagraphs between two words and run macro How to select different words at once FTL Word 5 03-08-2016 06:10 PM
Select pagagraphs between two words and run macro Macro for select words? Megan Sprack Word 1 08-23-2012 03:03 PM
Select pagagraphs between two words and run macro Macro to select tables ubns Word VBA 5 04-15-2012 11:44 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 03:56 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft