how to insert paragraph before table , pls help out in codes

PrakashGunabalan

New Member
Joined
Oct 26, 2024
Messages
5
Office Version
  1. Prefer Not To Say
Platform
  1. Windows
Option Explicit
VBA Code:
Sub Filter_Data_and_Send_Email()
    Dim rg As Range, i As Long
    Dim fltr As Range, oDoc As Object

    Set rg = Sheet1.Cells(1, 1).CurrentRegion
    Set fltr = Sheet2.Cells(1, 1).CurrentRegion
   
    For i = 2 To rg.Rows.Count
        fltr.AutoFilter 1, rg(i, 1).Value2
        With CreateObject("Outlook.Application").CreateItem(0)
                        .Display
            .To = rg(i, 2).Value2
            .Subject = "Report"
           
            Set oDoc = .GetInspector.WordEditor
           
               With oDoc.Range
                .insertParagraphAfter
                .InsertAfter "Thank you,"
                .insertParagraphAfter
                .InsertAfter "Greg"
                   
            End With
                        fltr.SpecialCells(xlCellTypeVisible).Copy
            oDoc.Range(0, 0).Paste
           
            .HTMLBody = "" & _
            "Whoa that it " & .HTMLBody
             
            
             .HTMLBody = "" & _
            "Please see table below" & .HTMLBody
          .HTMLBody = "" & _
            "Hi Team, " & .HTMLBody
           
          
           
                      '.Send
        End With
    Next i
End Sub
 
Last edited by a moderator:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
When posting vba code in the forum, please use the available code tags. It makes your code much easier to read/debug & copy. My signature block below has more details. I have added the tags for you this time. 😊
 
Upvote 0

Forum statistics

Threads
1,223,532
Messages
6,172,878
Members
452,486
Latest member
standw01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top