Consulting

Results 1 to 2 of 2

Thread: Search an expression (code) and turn the whole line into heading

  1. #1

    Search an expression (code) and turn the whole line into heading

    Hi, I look for the correct Macro Code in order to search into the whole document for a certain code and turn the whole line into heading 6
    I precise that the line containing the code can be in any format (heading/normal etc...)
    This is the code I wrote and obviously doesn't work:

    Sub head6_to_heading()
    Dim doc As Word.Document
        Dim rng As Word.Range
        Set doc = ActiveDocument
        Set rng = doc.Content
        With rng.Find
        .Text = "(head-"
        .MatchCase = False
        .MatchWholeWord = False
        .Replacement.Style = doc.Styles("Heading 6").ParagraphFormat
        .Wrap = wdFindStop
        End With
    End Sub
    Thanks by advance
    Last edited by Aussiebear; 04-18-2023 at 12:41 AM. Reason: Added code tags to supplied code

  2. #2
    Hello, you can try this code: geometry dash scratch
    Sub head6_to_heading()
        Dim doc As Word.Document
        Dim rng As Word.Range
        Set doc = ActiveDocument
        Set rng = doc.Content
        With rng.Find
            .Text = "(head-"
            .MatchCase = False
            .MatchWholeWord = False
            .Wrap = wdFindStop
            Do While .Execute
                rng.Paragraphs(1).Range.Style = doc.Styles("Heading 6")
            Loop
        End With
    End Sub
    Last edited by ruthburks; 02-04-2024 at 06:02 PM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •