我可以在 Excel 中为每个工作表设置 ErrorCheckingObjects 吗?
我正在生成一个 CSV 文件,然后通过 OLE 自动化在 Excel 中打开该文件。由于数据格式的原因,Excel 显示许多“公式不一致”警告(每个单元格角落的绿色图标)。我可以通过自动化在应用程序范围内关闭此功能,使用:
objExcel.ErrorCheckingOptions.InconsistentFormula = false
但这样做会永久更新用户首选项,并且用户需要知道在需要时重新启用该选项。
有没有办法关闭整个工作表或工作簿的错误检查,而不影响当前用户的全局设置?
I am generating a CSV file which I then open in Excel via OLE Automation. Because of the format of the data, Excel shows many "Inconsistent Formula" warnings (a green icon in corner of each cell). I can turn this off application-wide via automation, using:
objExcel.ErrorCheckingOptions.InconsistentFormula = false
But doing so updates the user preferences permanently and the user needs to know to re-enable that option, if needed.
Is there any way to turn off error checking for an entire Worksheet or Workbook, without affecting the current user's global settings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信这是可能的,不。我唯一可以建议的是保持 Excel 应用程序对象处于活动状态,直到用户使用完它,然后在退出应用程序之前将
InconsistantFormula
属性切换回 true。I don't believe that's possible, no. The only thing I can suggest is keeping the Excel application object alive until the user is done with it and then switching the
InconsistentFormula
property back to true before exiting the application.