我在 excel 中使用一个简单的 Visual Basic 脚本遇到了模糊的“400”错误。我注释掉了所有内容,只在我的方法中留下了一行: ActiveCell.EntireRow.Insert
这里是“完整”(剥离)方法(键绑定到 ctrl+shift+n):
Sub NewUserStory()
'
' NewUserStory Macro
' Creates a new empty user story with pasted formulas for remaining work, and cumulative planning information
'
' Keyboard Shortcut: Ctrl+Shift+N
'
ActiveCell.EntireRow.Insert ' Insert a new row above selected row
End Sub
如果我选择了任何单元格并按下宏,调试器将在我的断点处停止。当我进入该方法时,我立即收到错误“400”的弹出窗口。我 100% 确定没有其他方法被执行。
在过去的 2 个小时里,我一直在用谷歌搜索这个,但没有解决这个问题。抱歉这个蹩脚的问题,但我的工作需要血腥宏:)。
提前谢谢了!
PS:如果有人可以提供 ActiveCell.EntireRow.Insert 的替代方案,我当然也全神贯注!