我在已经在办公室使用了几个月的电子表格中有以下代码:
Private Sub CommandButton2_Click()
With Sheets("Summary").Range("B2:H83")
.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:="F:\Export.pdf", _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=True
End With
End Sub
今天,当我尝试执行时,出现运行时错误1004。
我们做了最近的Office 365更新,这可能是罪魁祸首吗?