- ·上一篇:excel行列如何交换位置
- ·下一篇:excel如何粘贴文本格式不变
做表时excel未响应如何办
2026-01-27 14:23:04
1.在EXCEL中编辑表格时,复制表格再粘贴时导致EXCEL无响应
如果是别人的,可能有防复制的宏,不是别人的,那就是其他原因,
是宏的话可以解决,下面是代码
Sub 解除锁定() Application.CommandBars("Standard").Visible = True Application.CutCopyMode = True With Application .CommandBars(1).Controls("编辑(&E)").Controls(1).Enabled = True .CommandBars("cell").Controls(1).Enabled = True .CommandBars("cell").Controls(2).Enabled = True .CommandBars("cell").Controls(3).Enabled = True .CommandBars("cell").Controls(4).Enabled = True End With End Sub
