Hi Kaper
I have added code that allow the user to set the page break. I need it amended so that once the page breaks have been adjusted in page Preview the macro will continue
Sub Email_Journal()
Dim File As String, strBody As String, LR As Long
TheFile = Sheets("data").Range("A42")
Application.ScreenUpdating = False
Application.DisplayAlerts = False
File = Environ$("temp") & "\" & Sheets("Data").Range("A42") & ".xlsx"
strBody = "Hi " & Sheets("Data").Range("AT1") & vbNewLine & vbNewLine & _
"Attached, please find Journal Entries to be printed" & vbNewLine & vbNewLine & _
"Regards" & vbNewLine & vbNewLine & _
"Howard"
Set Rng = Nothing
Sheets("Data").Range("Journals").Copy
Set rng = Nothing
Sheets("Data").Range("Journals").Copy
Workbooks.Add
ActiveSheet.Range("a1").PasteSpecial xlPasteValues
ActiveSheet.Range("a1").PasteSpecial xlPasteFormats
ActiveSheet.Range("a1").PasteSpecial xlPasteColumnWidths
Sheets(1).Name = "Data"
LR = Sheets(1).Cells(Rows.Count, "A").End(xlUp).Row
With ActiveWorkbook
With ActiveSheet.PageSetup
.PrintGridlines = True
.PrintArea = "A2:E" & LR + 5
.PrintTitleRows = "$1:$1"
.PrintTitleColumns = ""
.LeftHeader = "&D&T"
.CenterHeader = "Stocking Interest Journals"
.Orientation = xlLandscape
.FitToPagesWide = 1
End With
Sheets(1).Select
ActiveWindow.View = xlPageBreakPreview
.SaveAs Filename:=File, FileFormat:=51
.Close savechanges:=False
End With
DoEvents
With CreateObject("Outlook.Application").CreateItem(0)
ActiveWindow.View = xlPageBreakPreview
.To = Join(Application.Transpose(Sheets("Data").Range("AU1:AU2").Value), ";")
.Subject = Sheets("Data").Range("a42")
.body = strBody
.Attachments.Add File
DoEvents
.Display
End With
Kill File
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub
It would be appreciated if you would kindly amend the code
Bookmarks