So I have been using the below code to print to PDF forever and it works well, however upon my last Adobe upgrade my PDF's turnout in negative colours and strange quality. IT has advised that I use the "Create PDF" function in Excel vs. "Saveas PDF" like my macro has. Does anyone know how to change my code to do this?
ThisWorkbook.Sheets(Array("Sheet1", "Sheet2", "Sheet3")).Select
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, FileName:= _
"s:\Location\Folder\MYSHEETS.pdf", Quality:=xlQualityStandard, IncludeDocProperties:=True, _
IgnorePrintAreas:=False, OpenAfterPublish:=False
Much appreciated,
Bookmarks