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.
只需要帮助解决这个问题。我将它用于条件格式:=F5:J5=MAX($F5:$J30)。我有 5 列的值需要过滤。
没关系,但是当我具有相同的价值时,我只需要打击其中一个而不是全部。
你想要这个公式:
=F5=MAX($F$5:$J$30)
这样它一次只会比较一个单元格。
如果你想要的是第一个最大值,那么使用这个公式:
=AND(F5=MAX($F$5:$J$30),COUNTIF($F5:F5,F5)=1,COUNTIF($F$4:$J4,F5)=0)