我正在使用谷歌工作表,我需要实施以下excel公式到我的工作表。
https://docs.google.com/spreadsheets/d/1XzAYEezt2gNt_tdbxyZT-p6XwjNdhvUbt_9rBoABlhI/edit?usp=sharing
=IFERROR(INDEX(Formularantworten!B:B;AGGREGAT(15;6;ROW(Formularantworten!$B$2:$B$100)/(Formularantworten!$B$2:$B$100<>"")/(Formularantworten!$H$2:$H$100<>"");ROW(A1)));"")发布于 2019-05-03 19:23:21
好吧,如果你想匹配两列并索引第三列,找到第一个匹配,你可以做你在聚集出现之前在Excel中所做的事情:
=index(C:C,match(1,(A:A<>"")*(B:B<>""),0))或
=index(C:C,min(if((A:A<>"")*(B:B<>""),row(A:A))))但在Google sheets中,你有更多的选择,并且更有可能使用如下内容
=query(A:C,"select C where A is not null and B is not null limit 1")https://stackoverflow.com/questions/55951165
复制相似问题