So I have this code
It loops thru and creates a PDF as long as "x" has some text. But it creates 1 seperate per file
Anyway to have it loop thru and create the PDF all in one file?
VBA Code:
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=ThisWorkbook.Path & "\test" & x & ".pdf"
Anyway to have it loop thru and create the PDF all in one file?