首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Excel AGGREGAT公式的Google Sheets等效项

Excel AGGREGAT公式的Google Sheets等效项
EN

Stack Overflow用户
提问于 2019-05-02 19:11:22
回答 1查看 67关注 0票数 0

我正在使用谷歌工作表,我需要实施以下excel公式到我的工作表。

https://docs.google.com/spreadsheets/d/1XzAYEezt2gNt_tdbxyZT-p6XwjNdhvUbt_9rBoABlhI/edit?usp=sharing

代码语言:javascript
复制
 =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)));"")
EN

回答 1

Stack Overflow用户

发布于 2019-05-03 19:23:21

好吧,如果你想匹配两列并索引第三列,找到第一个匹配,你可以做你在聚集出现之前在Excel中所做的事情:

代码语言:javascript
复制
=index(C:C,match(1,(A:A<>"")*(B:B<>""),0))

代码语言:javascript
复制
=index(C:C,min(if((A:A<>"")*(B:B<>""),row(A:A))))

但在Google sheets中,你有更多的选择,并且更有可能使用如下内容

代码语言:javascript
复制
=query(A:C,"select C where A is not null and B is not null limit 1")
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/55951165

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档