gpt4 book ai didi

VBA运行时错误: Clear Contents of an Excel sheet

转载 作者:行者123 更新时间:2023-12-02 17:07:35 24 4
gpt4 key购买 nike

我在 Excel 2003 中编写了以下 VBA 代码来清除 Excel 工作表的内容;但它显示

RunTime Error 438: Object doesn't Support this property or Method

这是我的代码,

Application.DisplayAlerts = False
Application.ScreenUpdating = False

Set wbk = Workbooks.Open("C:\a.xls")
wbk.Sheet1.Cells.ClearContents 'Error at this line
wbk.Save
wbk.Close

Application.DisplayAlerts = True
Application.ScreenUpdating = True

如果 excel 不可见时不支持 wbk.Sheet1.Cells.ClearContents,请告诉我。当Excel工作表不可见时,如何清除它的内容?

最佳答案

我已经使用了以下方法,现在已经解决了!

wbk.Sheets("Sheet1").Cells.ClearContents

关于VBA运行时错误: Clear Contents of an Excel sheet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14038595/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com