Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的专栏: -
1
2
3
4
5
在另一列中,我只需要为第一次出现的数字显示 TRUE,否则为 FALSE。所以:-
1 对
1 错误
2 对
2 错误
3 对
4 对
5 对
5 错误
请帮忙!
B1:=(COUNTIF(A$1:A1,A1)=1) B2:=(COUNTIF(A$1:A2,A2)=1)
=(COUNTIF(A$1:A1,A1)=1)
=(COUNTIF(A$1:A2,A2)=1)
等(您可以拖放公式)
请尝试以下公式。这假设您的号码是从 C4 开始的。这是D4中的公式
=COUNTIF($C$1:$C3,C4)=0