Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 07-22-2019, 03:13 AM
gmaxey gmaxey is offline Macro to wrap each section in a document with some text Windows 10 Macro to wrap each section in a document with some text Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

So that would be the "next" paragraph:


Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oPar As Paragraph
Dim oRng As Range
  For Each oPar In ActiveDocument.Paragraphs
    Select Case oPar.Style
      Case "Heading 1", "Heading 2", "Heading 3" 'etc.
        Set oRng = oPar.Next.Range
        oRng.End = oRng.End - 1
        oRng.Text = "Start " & oRng.Text & " End"
    End Select
  Next oPar
lbl_Exit:
  Exit Sub
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro to wrap each section in a document with some text Automatic locking section of document AFTER text typed lou1990lou Word VBA 2 01-20-2019 02:39 PM
Macro to wrap each section in a document with some text Auto section break macro - want to have no header on first page of document cspeid03 Word 1 05-17-2017 12:18 PM
Macro to wrap each section in a document with some text Wrap text in text box around image with transparent background pstidsen Word 4 02-08-2016 03:30 PM
Macro to wrap each section in a document with some text Fix a section on first page and wrap around it? Bpilgrim Word 2 09-04-2015 09:50 PM
Macro to wrap each section in a document with some text Macro to insert multiple pictures to word to a specific size and text wrap mescaL Word VBA 3 11-03-2014 10:51 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 12:12 PM.


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