标签: function google-sheets formula gs-conditional-formatting
我在A列中的内容是一个双字项目列表,需要相互检查以查看是否有任何重复项目。我有一个公式:
=countif(A:A,A1)>1
A1:A1000
,如果以相同的顺序输入,则会突出显示重复项。例如,Dog Cat会突出显示Dog Cat。但如果我输入Dog Cat,我也希望它突出显示Cat Dog。
Dog Cat
Cat Dog
我会用什么公式?
答案 0 :(得分:0)
请尝试使用自定义公式:
=and(countif(A$1:A1,A1)>1,or(countif(A:A,A1)>1,countif(A:A,"="&left(A1,find(" ",A1)-1)&mid(A1,find(" ",A1),len(A1)-find(" ",A1)+1))>1))
应用于ColumnA,从ColumnB复制文本,格式化为黄色填充样式,结果为:
也就是说,一对单词的两个顺序顶部的第一个实例未格式化。