使用宏在 Excel 状态栏上复制总和,在 Windows 资源管理器打开时显示错误
我有一个分配给功能区按钮的宏,该按钮复制状态栏中选定范围的总和,以便我可以在其他地方使用它:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该死的,我刚刚意识到 Excel 365 你只需要单击状态栏...
不再需要这个了!
Damn i just realised excel 365 you just need to click the status bar...
no need for this anymore!