在整个工作簿中应用条件格式标准(而不仅仅是在单个工作表中)
我的目标是不仅消除sheet1中的重复值,而且包括sheet2和sheet3的值!因此,当我键入sheet1中已经存在的值时(例如我正在sheet2中工作),以激活复制条件。
当我尝试在任何条件格式规则中选择多个工作表时,出现此消息错误:
您不能使用对其他工作表或工作簿的引用作为条件格式设置条件
My goal is to eliminate duplicate value not only in sheet1, but to include values of sheet2 and sheet3 for example! So when I type a value which is already existing in sheet1 (for example I'm working in sheet2), to activate the condition of duplicating.
I get this message error when I try to select more than one sheet in any conditional formatting rule:
you cannot use references to other worksheets or workbooks for conditional formatting criteria
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须编写像 Worksheet_Change 这样的事件来检查重复项。
You'll have to code an event like Worksheet_Change to check for the duplication.
尽管
您不能使用对其他工作表或工作簿的引用作为条件格式设置条件
,但驻留在一个工作表中的工作簿范围的命名范围可以在同一本书的另一个工作表中访问。因此,如果您在 Sheet1 和 Sheet2 中的 A1:A3 中输入
a
、b
和c
并将其命名为 Sheet1!A1:A3 Range1,那么您可以通过应用以下公式来有条件地设置 Sheet2 A1:A3 的格式:Despite
you cannot use references to other worksheets or workbooks for conditional formatting criteria
a named range of workbook scope that resides in one sheet is accessible in another in the same book.So if you have say
a
,b
andc
in A1:A3 in Sheet1 and in Sheet2 and name Sheet1!A1:A3 Range1 then you can conditionally format Sheet2 A1:A3 by applying a formula such as: