在Google电子表格中标记重复条目

时间:2013-11-07 18:06:32

标签: google-app-engine google-apps-script google-sheets

我有一个电子表格,其中F列中的条目可能会在以后的F中重复。我正在制作类似于此伪代码的内容:

While Ax is not empty

If value in Gx is empty   
  If cell Ex is identical to other cell Ey
  OR 
  If cell Fx is identical to other cell Fy 
     THEN
       Mark Gy as duplicate
       italics row y

有关使用Google的内置应用脚本进行此项工作的任何建议吗?

免责声明:我不熟悉JS,但我正在努力。

1 个答案:

答案 0 :(得分:9)

你不需要JS。您可以使用内置电子表格公式来完成此操作。

听起来你想要给this question一个类似的答案,不同的是你要检查两列而不是一列。

你想要这个:

=if(AND(COUNTIF($A$1:$A2,A2)=1, COUNTIF($B$1:$B2,B2)=1), "", "Yes")

需要注意的关键是使用AND forumla。

这将在后续行中填充并显示如下:

=if(AND(COUNTIF($A$1:$A3,A3)=1, COUNTIF($B$1:$B3,B3)=1), "", "Yes")
=if(AND(COUNTIF($A$1:$A4,A4)=1, COUNTIF($B$1:$B4,B4)=1), "", "Yes")
...

这些是使用电子表格数据作为示例的结果。这假设公式已插入Duplicate?列(C2)并填充:

   A                          B               C
1  Contact                    Name            Duplicate?
2  email@example.com          John  
3  repeat.email@example.com   Repeated Name 
4  repeat.email@example.com   Jane            Yes
5  email3@example.com         Repeated Name   Yes