如何选择保存文件的文件夹?

时间:2020-05-07 12:41:30

标签: excel vba pdf printing

我想在PDF中打印一个Excel表格,并且我在下面尝试了此代码。但是,输出路径是在宏中确定的,我希望用户打开目录并选择要保存pdf的文件夹

Sub SaveSelectionAsPDF()

Dim saveLocation As String
saveLocation = "C:\Users\Documents\myPDFFile.pdf"


Selection.ExportAsFixedFormat Type:=xlTypePDF, _
    Filename:=saveLocation

End Sub

我该如何解决这个小问题?

0 个答案:

没有答案