I have the following code below
I need the code amended to show Grindlines on the Range of Data saved as a PDF
I need the code amended to show Grindlines on the Range of Data saved as a PDF
Code:
Sub Export_Summary_as_PDF()
Application.ScreenUpdating = False
Range("Summary").Select
Dim filePath As String
filePath = "C:\My Documents\" & "\" & ActiveSheet.Range("E825").Value & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, fileName:= _
filePath, Quality:= _
xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, _
OpenAfterPublish:=False
Application.ScreenUpdating = True
End Sub