Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 如何获得google工作表中包含字符串标题的列的最大值?_Google Sheets_Google Sheets Formula - Fatal编程技术网

Google sheets 如何获得google工作表中包含字符串标题的列的最大值?

Google sheets 如何获得google工作表中包含字符串标题的列的最大值?,google-sheets,google-sheets-formula,Google Sheets,Google Sheets Formula,我对谷歌表单和学习公式非常陌生 我试图计算包含一些字符串的列的最大值。 如何获得最大值 MWE 我的尝试 显然,这不起作用,需要一些数组操作和正则表达式。我想知道如何做到这一点。MAX仅适用于数字。您的B列(或B列中的某个单元格)很可能已格式化为纯文本,因此请更改该格式或使用: =INDEX(MAX(IFERROR(B:B*1))) 该公式的计算结果为10。问题是什么? =MAX(B:B) =INDEX(MAX(IFERROR(B:B*1)))

我对谷歌表单和学习公式非常陌生

我试图计算包含一些字符串的列的最大值。 如何获得最大值

MWE 我的尝试
显然,这不起作用,需要一些数组操作和正则表达式。我想知道如何做到这一点。

MAX
仅适用于数字。您的B列(或B列中的某个单元格)很可能已格式化为纯文本,因此请更改该格式或使用:

=INDEX(MAX(IFERROR(B:B*1)))

该公式的计算结果为
10
。问题是什么?
=MAX(B:B)
=INDEX(MAX(IFERROR(B:B*1)))