VBA代码在Excel 2013中正常工作但在excel 2016中出错 - 编译错误

时间:2016-09-28 14:47:13

标签: excel vba excel-vba excel-2013 excel-2016

在搜索了大量解决方案之后,我正在与所有人联系。 我有一个在Excel 2013中运行良好的代码,但是当我尝试在excel 2016中运行相同的代码时,它会给我编译错误。

此代码是由其他人开发的,我只是对它做了一些小修改。下面是代码。由于Environ $变量,错误正在发生。因为当我按下给定屏幕截图中的确定按钮时突出显示的内容。

Function RangetoHTML(rng As Range)
Dim fso As Object
Dim ts As Object
Dim TempFile As String
Dim TempWB As Workbook

TempFile = Environ("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"

'Copy the range and create a new workbook to past the data in
rng.Copy
Set TempWB = Workbooks.Add(1)
With TempWB.Sheets(1)
    .Cells(1).PasteSpecial Paste:=8
    .Cells(1).PasteSpecial xlPasteValues, , False, False
    .Cells(1).PasteSpecial xlPasteFormats, , False, False
    .Cells(1).Select
    Application.CutCopyMode = False
    On Error Resume Next
    .DrawingObjects.Visible = True
    .DrawingObjects.Delete
    On Error GoTo 0
End With

'Publish the sheet to a htm file
With TempWB.PublishObjects.Add( _
     SourceType:=xlSourceRange, _
     Filename:=TempFile, _
     Sheet:=TempWB.Sheets(1).Name, _
     Source:=TempWB.Sheets(1).UsedRange.Address, _
     HtmlType:=xlHtmlStatic)
    .Publish (True)
End With

'Read all data from the htm file into RangetoHTML
Set fso = CreateObject("Scripting.FileSystemObject")
Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
RangetoHTML = ts.ReadAll
ts.Close
RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
                      "align=left x:publishsource=")

'Close TempWB
TempWB.Close savechanges:=False

'Delete the htm file we used in this function
Kill TempFile

Set ts = Nothing
Set fso = Nothing
Set TempWB = Nothing
End Function

我还附上错误屏幕截图。

Environ $ variable compile error

Environ$ variable compile error

任何快速帮助都会受到很多关注。

1 个答案:

答案 0 :(得分:0)

Ron de Bruin rangetohtml(rng as range)犯了同样的错误。

我已经解决了。

如果你之前回到代码 On Error Resume Next 并评论出来。

运行,您会看到它无法找到drawingobjects.visible

修复。

转到file/options/formulas/

确保它不是R1C1 - 取消选中此框。

此后我的工作正常。