Hello,
 
I would like to modify Ron De Bruin's mail code to make the attachment be a pdf instead of an excel attachment. http://www.rondebruin.nl/win/s1/outlook/amail8.htm this is the exact post of Ron's I got it from originally. I am also attaching a sample file of how the format of my report is, with all made up numbers of course.
 
What the macro currently does, is loop through Column A and filters onto a new workbook every row that has "USER1" in column A and attaches it to the email address specified in Column B. Every time the value changes in Column A, like from USER1 to USER2, a new workbook with that user's rows is created and attached to an email.
 
I would like the attachment to be a pdf and not in excel format. If it could keep the formatting from Excel at the same time that would be preferable.
 
Also, I have searched through old forum posts and while their are posts related to modifying Ron's mail code, he has many various codes for mailing, printing to pdf etc. and I am by no means a veteran VBA coder. I was thus unable to find the solution I desire with the aid of this forum's previous posts or Google's help.
 
Any help is appreciated!!
 
	
	
	
		
				
			I would like to modify Ron De Bruin's mail code to make the attachment be a pdf instead of an excel attachment. http://www.rondebruin.nl/win/s1/outlook/amail8.htm this is the exact post of Ron's I got it from originally. I am also attaching a sample file of how the format of my report is, with all made up numbers of course.
What the macro currently does, is loop through Column A and filters onto a new workbook every row that has "USER1" in column A and attaches it to the email address specified in Column B. Every time the value changes in Column A, like from USER1 to USER2, a new workbook with that user's rows is created and attached to an email.
I would like the attachment to be a pdf and not in excel format. If it could keep the formatting from Excel at the same time that would be preferable.
Also, I have searched through old forum posts and while their are posts related to modifying Ron's mail code, he has many various codes for mailing, printing to pdf etc. and I am by no means a veteran VBA coder. I was thus unable to find the solution I desire with the aid of this forum's previous posts or Google's help.
Any help is appreciated!!
		Code:
	
	Sub Send_Row_Or_Rows_Attachment_2()
  Dim OutApp As Object
  Dim OutMail As Object
  Dim rng As Range
  Dim Ash As Worksheet
  Dim Cws As Worksheet
  Dim Rcount As Long
  Dim Rnum As Long
  Dim FilterRange As Range
  Dim FieldNum As Integer
  Dim NewWB As Workbook
  Dim TempFilePath As String
  Dim TempFileName As String
  Dim FileExtStr As String
  Dim FileFormatNum As Long
  On Error GoTo cleanup
  Set OutApp = CreateObject("Outlook.Application")
  With Application
  .EnableEvents = True
  .ScreenUpdating = True
  End With
  'Set filter sheet, you can also use Sheets("MySheet")
  Set Ash = ActiveSheet
  'Set filter range and filter column (column with e-mail addresses)
  Set FilterRange = Ash.Range("A1:k" & Ash.Rows.Count)
  FieldNum = 2  'Filter column = B because the filter range start in column A
  'Add a worksheet for the unique list and copy the unique list in A1
  Set Cws = Worksheets.Add
  FilterRange.Columns(FieldNum).AdvancedFilter _
  Action:=xlFilterCopy, _
  CopyToRange:=Cws.Range("A1"), _
  CriteriaRange:="", Unique:=True
  'Count of the unique values + the header cell
  Rcount = Application.WorksheetFunction.CountA(Cws.Columns(1))
  'If there are unique values start the loop
  If Rcount >= 2 Then
  For Rnum = 2 To Rcount
  'If the unique value is a mail addres create a mail
  If Cws.Cells(Rnum, 1).Value Like "?*@?*.?*" Then
  'Filter the FilterRange on the FieldNum column
  FilterRange.AutoFilter Field:=FieldNum, _
  Criteria1:=Cws.Cells(Rnum, 1).Value
  'Copy the visible data in a new workbook
  With Ash.AutoFilter.Range
  On Error Resume Next
  Set rng = .SpecialCells(xlCellTypeVisible)
  On Error GoTo 0
  End With
  Set NewWB = Workbooks.Add(xlWBATWorksheet)
  rng.Copy
  With NewWB.Sheets(1)
  .Cells(1).PasteSpecial Paste:=8
  .Cells(1).PasteSpecial Paste:=xlPasteValues
  .Cells(1).PasteSpecial Paste:=xlPasteFormats
  .Cells(1).Select
  Application.CutCopyMode = False
  End With
  'Create a file name
  TempFilePath = Environ$("temp") & "\"
  TempFileName = "Budget Book - " & Ash.Parent.Name _
  & " " & Format(Now, "dd-mmm-yy h-mm-ss")
  If Val(Application.Version) < 12 Then
  'You use Excel 97-2003
  FileExtStr = ".xls": FileFormatNum = -4143
  Else
  'You use Excel 2007-2013
  FileExtStr = ".xlsx": FileFormatNum = 51
  End If
  'Save, Mail, Close and Delete the file
  Set OutMail = OutApp.CreateItem(0)
  With NewWB
  .SaveAs TempFilePath & TempFileName _
  & FileExtStr, FileFormat:=FileFormatNum
  On Error Resume Next
  With OutMail
  .to = Cws.Cells(Rnum, 1).Value
  .Subject = "Quarterly Budget Report"
  .Attachments.Add NewWB.FullName
  .Body = "Body of email"
  .Display  'Or use Send
  End With
  On Error GoTo 0
  .Close savechanges:=False
  End With
  Set OutMail = Nothing
  'Kill TempFilePath & TempFileName & FileExtStr
  End If
  'Close AutoFilter
  Ash.AutoFilterMode = False
  Next Rnum
  End If
cleanup:
  Set OutApp = Nothing
  Application.DisplayAlerts = False
  Cws.Delete
  Application.DisplayAlerts = True
  With Application
  .EnableEvents = True
  .ScreenUpdating = True
  End With
End Sub 
	
 
 
		
 
 
		
 Glad to hear
 Glad to hear