使用宏在 Excel 状态栏上复制总和,在 Windows 资源管理器打开时显示错误

发布于 2025-01-11 11:47:03 字数 390 浏览 0 评论 0原文

我有一个分配给功能区按钮的宏,该按钮复制状态栏中选定范围的总和,以便我可以在其他地方使用它:

  Sub CopySUM()
     Dim DataObj As New MSForms.DataObject
       On Error GoTo BailOut
       DataObj.SetText 
       Application.Sum(Selection.SpecialCells(xlCellTypeVisible))
       DataObj.PutInClipboard
       BailOut:
   End Sub

它可以正常工作,直到我打开 Windows 资源管理器。然后它只会粘贴错误方块 [?][?] 。有谁知道为什么会发生这种情况或如何解决它?

I have this macro that is assigned to a ribbon button that copies the sum of a selected range from the status bar so i can use it elsewhere:

  Sub CopySUM()
     Dim DataObj As New MSForms.DataObject
       On Error GoTo BailOut
       DataObj.SetText 
       Application.Sum(Selection.SpecialCells(xlCellTypeVisible))
       DataObj.PutInClipboard
       BailOut:
   End Sub

It works ok till i have windows explorer open. It will then only paste error squares [?][?] . Does anyone knows why this occur or how to fix it?

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

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

发布评论

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

评论(1

迷雾森÷林ヴ 2025-01-18 11:47:03

该死的,我刚刚意识到 Excel 365 你只需要单击状态栏...

不再需要这个了!

Damn i just realised excel 365 you just need to click the status bar...

no need for this anymore!

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