• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Vba to send range of data from sheets as attachment

Abi123

New Member
Hi
Code:
Sub attachments()
Dim lr As Long
Dim ws As Worksheet
Dim vcol, i As Integer
Dim icol As Long
Dim myarr As Variant
Dim title As String
Dim titlerow As Integer
vcol = 9
Set ws = Sheets("EmailOutput")
lr = ws.Cells(ws.Rows.Count, vcol).End(xlUp).Row
title = "A1:I1"
titlerow = ws.Range(title).Cells(1).Row
icol = ws.Columns.Count
ws.Cells(1, icol) = "Unique"
For i = 2 To lr
On Error Resume Next
If ws.Cells(i, vcol) <> "" And Application.WorksheetFunction.Match(ws.Cells(i, vcol), ws.Columns(icol), 0) = 0 Then
ws.Cells(ws.Rows.Count, icol).End(xlUp).Offset(1) = ws.Cells(i, vcol)
End If
Next
myarr = Application.WorksheetFunction.Transpose(ws.Columns(icol).SpecialCells(xlCellTypeConstants))
ws.Columns(icol).Clear
For i = 2 To UBound(myarr)
ws.Range(title).AutoFilter field:=vcol, Criteria1:=myarr(i) & ""
If Not Evaluate("=ISREF('" & myarr(i) & "'!A1)") Then
Sheets.Add(after:=Worksheets(Worksheets.Count)).Name = myarr(i) & ""
Else
Sheets(myarr(i) & "").Move after:=Worksheets(Worksheets.Count)
End If
ws.Range("A" & titlerow & ":A" & lr).EntireRow.Copy Sheets(myarr(i) & "").Range("A1")
Sheets(myarr(i) & "").Columns.AutoFit
Next
ws.AutoFilterMode = False
ws.Activate
End sub

I have a raw data which has to be sorted and for which i have given codes. Once the data is sorted I have given a code to separate sheets based on column (Col I) filter. Above is the code i have used,

Details entered in the Masterdata sheet:
Eg :
Account Send Code Email ID
80000 PTN sherine@gmail.com
80004 RB Mathew@gmail.com
80064 PTN Abi@gmail.com
80068 RS radha@gmail.com
80069 RB-AR sow@gmail.com
Till this point i was able to create. I need your help in sending automatic email via outlook as below,
> Once the sheets are separated with the sheet name (Netting code in the masterdata sheet), I want to send email automatically to the corresponding email id. For example,
Sheet- PTN have the below details need to be sent to sherine@gmail.com automatically with the sheet PTN as single attachment,
I also want to input the body of the email every time. I have multiple netting code and their corresponding email id in the masterdata sheet.
Please help me with the code.
I have attached the macro as well the sample data for your reference.
Expecting your assistance :)
Many Thanks
 

Attachments

Back
Top