Hi All,
I'm new to the forum (first post) and am hoping to get some help.
I have a vba procedure in a workbook that, after updating some tables that a chart references - prints a page to a pdf file.
The code I use for this is as follows:
Sheets("Report").Range("B2:U59").ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
ThisWorkbook.Path & "\" & storelist(i) & ".pdf", to:=2, IgnorePrintAreas:=False
This part of code is within a loop (basically prints a page to a pdf file and then updates the page and charts before printing again).
It exports the file fine on all computers in the office.
The client who I set this up for however is having issues - the charts on the pdf output change in size and are much larger than they should be (they actually don't even fit on the page).
Is there any advice anyone can offer?
I'm new to the forum (first post) and am hoping to get some help.
I have a vba procedure in a workbook that, after updating some tables that a chart references - prints a page to a pdf file.
The code I use for this is as follows:
Sheets("Report").Range("B2:U59").ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
ThisWorkbook.Path & "\" & storelist(i) & ".pdf", to:=2, IgnorePrintAreas:=False
This part of code is within a loop (basically prints a page to a pdf file and then updates the page and charts before printing again).
It exports the file fine on all computers in the office.
The client who I set this up for however is having issues - the charts on the pdf output change in size and are much larger than they should be (they actually don't even fit on the page).
Is there any advice anyone can offer?