2007 年删除行的宏在 2003 年不起作用

发布于 2024-10-31 16:27:40 字数 251 浏览 0 评论 0原文

当我打开 Excel 工作表时,此代码仅调用一次。将数据从一张工作表复制到另一张工作表,工作在删除代码上方,如下所示。如果我再次运行宏,那么它会按预期工作。
2003 年,当我打开工作表时,复制和删除都可以工作。

这是给我带来问题的代码:

Rows(ExceptionList & ":" & ExceptionList).Select 
Selection.Delete Shift:=xlUp

This code is calling only one time when I open my excel sheet. The copy of data from one sheet to another sheet working just above the deletion code shown below. if I run the macro again then it is works as expected.
In 2003 both copying and deletion working when I open the sheet.

This is the code that is giving me problems:

Rows(ExceptionList & ":" & ExceptionList).Select 
Selection.Delete Shift:=xlUp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-11-07 16:27:40

ExceptionList 是字符串类型吗?

我会避免整个字符串连接业务,只需说 Rows(rowNumberToDelete).Delete Shift:=xlUp

另外,整个 .Select-Selection. 白话是不必要的而且效率低下。这就是 Excel 机器生成宏的方式,但有思想的人不应该这样写。

Is ExceptionList a String type?

I would avoid this whole string concatenation business and just say Rows(rowNumberToDelete).Delete Shift:=xlUp

Also, the whole .Select-Selection. vernacular is unnecessary and inefficient. That's how Excel machine-generates macros, but a thinking human shouldn't write like this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文