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.
我知道SUMIF(和朋友)公式。我想知道是否可以在没有宏或 VBA 的情况下将逻辑扩展到其他功能(例如“性别 = F 的最大年龄”)。我尝试过类似的事情
SUMIF
MAX(IF(A1:A5="F",B1:B5,""))
但它似乎不起作用。
可以使用数组公式来完成,Ctrl-Shift-Enter用于输入此公式:
Ctrl-Shift-Enter
=MAX(IF(A1:A5="F",B1:B5,0))
(它将显示在带有大括号的公式栏中)。
零用于那些不是“F”的值/行,这不会影响最大年龄。