QUERY 函数不包括结果中的文本单元格和数字单元格
QUERY function not including text cells along with number cells in result
我目前正在尝试使用 google-sheets 中的 QUERY
函数复制列表。
我现在面临的问题是单词/字母未包含在搜索中。
Example picture
我正在使用函数:"=QUERY(E2:F5;)"
但没有包含单词。
有什么方法可以使用上面的公式作为指南来包含这些词吗?
在 google-sheets 中,对 E2:F5 的源范围使用格式、数字、纯文本,您的原始公式将起作用。
=QUERY(E2:F5)
来自Docs Editor Help - QUERY function
In case of mixed data types in a single column, the majority data type determines the data type of the column for query purposes. Minority data types are considered null values.
我目前正在尝试使用 google-sheets 中的 QUERY
函数复制列表。
我现在面临的问题是单词/字母未包含在搜索中。
Example picture
我正在使用函数:"=QUERY(E2:F5;)"
但没有包含单词。
有什么方法可以使用上面的公式作为指南来包含这些词吗?
在 google-sheets 中,对 E2:F5 的源范围使用格式、数字、纯文本,您的原始公式将起作用。
=QUERY(E2:F5)
来自Docs Editor Help - QUERY function
In case of mixed data types in a single column, the majority data type determines the data type of the column for query purposes. Minority data types are considered null values.