我有一些代码可以将Excel文件中的数据复制并粘贴到word文档中,如何将该word文档保存为PDF格式?
我的代码如下:
Sub RetailerGraphs()
Dim Location As String
Dim Detail As String
Worksheets("-Summary").Activate
Range("AE9").Select
While ActiveCell.Value <> ""
ActiveCell.Offset(1, 0).Select
Location = ActiveCell.Value
Worksheets("Detail Summary").Activate
Range("B7").Value = Location
Dim objWord, objDoc As Object
ActiveWindow.View = xlNormalView
Set objWord = CreateObject("Word.Application")
Set objDoc = objWord.Documents.Add
Range("AH40").Select
While ActiveCell <> ""
ActiveCell.Offset(1, 0).Select
Detail = ActiveCell.Value
Range("B11").Value = Detail
Application.Wait (Now + TimeValue("0:00:05"))
Range("A1:Z111").CopyPicture Appearance:=xlScreen, Format:=xlPicture
objWord.Visible = True
objWord.Selection.Paste
objWord.Selection.TypeParagraph
Set objSelection = objWord.Selection
objSelection.InsertBreak (wdPageBreak)
If ActiveCell.Value = "END" Then
objWord.SaveAs2 "C:\Docs\MyDoc.pdf"
End If
Wend
Worksheets("-Summary").Activate
Wend
End Sub
在行内:
If ActiveCell.Value = "END" Then
End If
我已尝试使用以下代码尝试将其另存为PDF:
objWord.ExportAsFixedFormat OutputFileName:="C:\wordtest.pdf", _
ExportFormat:=wdExportFormatPDF
objWord.ExportAsFixedFormat OutputFileName:="C:\Documents and Settings\All Users\Desktop\YourFile.pdf", ExportFormat:=wdExportFormatPDF
objDoc.ExportAsFixedFormat OutputFileName:="C:\Documents and Settings\All Users\Desktop\YourFile.pdf", ExportFormat:=wdExportFormatPDF
但是我在尝试将其导出为PDF的行中收到错误,例如objWord.SaveAs2 "C:\Docs\MyDoc.pdf"
:
Run-time error '438':
Object doesn't support this property or method
有人可以帮忙吗?
注意:我已确保&#34; Microsoft Word 14.0对象库&#34;在引用中勾选,我将位置更改为必要的目录,而不是使用上面的。
答案 0 :(得分:0)
ExportAsFixedFormat
是Word.Document(objDoc)的方法,而不是Word.Application(objWord)。所以
objDoc.ExportAsFixedFormat OutputFileName:="C:\Docs\File.pdf", ExportFormat:=wdExportFormatPDF
应该有用。
这是否也会出错?哪个?