【问题标题】:Need a formula in Google Sheets that will return the same value as an Excel formula在 Google 表格中需要一个公式,该公式将返回与 Excel 公式相同的值
【发布时间】:2020-08-21 00:39:10
【问题描述】:

我需要一个与 Excel 中的以下公式完全相同的 Google 表格公式。

Excel 中的公式:=@SORT(FILTER(B74:B80,E51=C74:C80,""),1,-1)

请问有谁知道什么公式可以做到这一点?

目前我在 Google 表格中使用了以下公式,但返回的是所有结果,而不仅仅是最大日期:

=IFERROR(FILTER(B74:B80,E51=C74:C80),"")

【问题讨论】:

  • 分享您的工作表副本

标签: sorting date google-sheets max google-sheets-formula


【解决方案1】:

尝试:

=INDEX(SORT(FILTER(B74:B80, E51=C74:C80), 1, 0), 1, 1)

或:

=MAX(FILTER(B74:B80, E51=C74:C80))

【讨论】:

    猜你喜欢
    • 2020-07-24
    • 1970-01-01
    • 1970-01-01
    • 2017-07-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多