Hello All,
I am looking to make a macro that will save my current workbook as an XLS and a PDF.
To save as an XLS I am currently using,
This is working great for me, but I haven't found a macro yet that will take the file name from the XLS and just save as a PDF. Also, if at all possible, I would like to have a short key in there to make it all quicker, but if not that is fine
Thanks,
Matt
I am looking to make a macro that will save my current workbook as an XLS and a PDF.
To save as an XLS I am currently using,
Code:
Sub Save()
ThisFile = Range("B7").Value
ActiveWorkbook.SaveAs Filename:=ThisFile
End Sub
Thanks,
Matt