Excel,使用名称字段指定特定单元格
我创建了一个宏,不允许在 Excel 工作表的 B 列和 C 列中同时存在值。我想通过允许名称为 DayShift 或 AfterShift 的单元格来对该公式进行例外处理。
我创建了这个:
If ActiveCell.Name = "DayShift" Or ActiveCell.Name = "AfterShift" Then
但它似乎不起作用,只会使其他单元格出错。有谁知道如何正确执行此操作?
I created a macro that doesn't allow values in both the B and C columns of an Excel sheet. I want to make an exception to that formula by allowing cells with the names DayShift or AfterShift.
I created this:
If ActiveCell.Name = "DayShift" Or ActiveCell.Name = "AfterShift" Then
But it doesn't seem to work and just makes other cells error. Does anyone know how to do this correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: