如何检测列是否包含不适合其宽度的值?
我需要检测列是否有一些需要更多宽度的值(网格中显示为 ###### 的值)
I need to detect if column has some values which need more width (that ones shown as ###### in the grid)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案取决于数据如何输入到单元格中。以下内容可能会帮助您开始:
或者影响一张工作表 - 例如在宏中 - 您可以将其更改为通过工作表编号/名称
或通过所有工作表并立即设置它们:
希望这有帮助
编辑:将 ScreenUpdating 添加到上面的代码中。
The solution depends on how the data is entered into the cells.. the below might get you started:
Or to affect one sheet - e.g. in a macro - you could change it to pass through the sheet number/name
or to go through ALL the sheets and set them all at once:
Hope this helps
EDIT: Added ScreenUpdating to above code.