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.
需要根据数组公式返回的结果获取数据
现在我需要得到:
为了获得第一个最高的 Column(D),我有以下 Array 公式可以正常工作。=MAX(IF((C10:C30)=1,D10:D30))
现在基于此,如何获得最高的 Col-G 和 H?
您可以使用它INDEX/MATCH来执行此操作,例如对于列 G 值,请尝试此“数组公式”
INDEX/MATCH
=INDEX(G10:G30,MATCH(1,(D10:D30=MAX(IF(C10:C30=1,D10:D30)))*(C10:C30=1),0))
用CTRL+ SHIFT+确认ENTER
替换G10:G30为H10:H30gt 列 H 值
G10:G30
H10:H30
当然,如果您已经在 B31 中有您的公式,您可以使用我建议的公式中的结果来简化,即
=INDEX(G10:G30,MATCH(1,(D10:D30=B31)*(C10:C30=1),0))