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 Sheets - Fatal编程技术网

Google sheets 谷歌电子表格:一个单元格中的所有单词的大写字母,超过三个字符

Google sheets 谷歌电子表格:一个单元格中的所有单词的大写字母,超过三个字符,google-sheets,Google Sheets,我需要将单元格中包含三个以上字符的所有单词大写 假设单元格A1是这是一个文本 如果我使用这个公式=property(A1)我得到这个这是一个文本 我需要一个公式来避免使用少于三个字符的大写单词,这样我就可以得到:这是一个文本看看这是否适合你 =ArrayFormula(join(" ", if(len(split(A1, " "))<3, split(A1, " "), proper(split(A1," "))))) =ArrayFormula(join(“),if(len)(spli

我需要将单元格中包含三个以上字符的所有单词大写

假设单元格A1是
这是一个文本

如果我使用这个公式
=property(A1)
我得到这个
这是一个文本


我需要一个公式来避免使用少于三个字符的大写单词,这样我就可以得到:
这是一个文本

看看这是否适合你

=ArrayFormula(join(" ", if(len(split(A1, " "))<3, split(A1, " "), proper(split(A1," ")))))
=ArrayFormula(join(“),if(len)(split(A1)”)