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 GoogleSheets:使用regexmatch过滤文字问号字符_Google Sheets_Google Sheets Formula - Fatal编程技术网

Google sheets GoogleSheets:使用regexmatch过滤文字问号字符

Google sheets GoogleSheets:使用regexmatch过滤文字问号字符,google-sheets,google-sheets-formula,Google Sheets,Google Sheets Formula,如何在Google Sheets自定义公式过滤器中匹配REGEXMATCH公式中的文字问号字符? 我试图在下面省略E列中有“na”或“?”的行,但它会过滤掉所有行。。。我已经尝试过用波浪线以及1、2、3、4和5个反斜杠来避开问号,但都没有成功。非常感谢您的帮助 =not(regexmatch(E:E, "na|?")) 我算出了:在上面的公式中,一个反斜杠就行了。我很困惑,因为我没有得到任何东西,但在阅读关于regexmatch的文章时,我发现它只对文本格式的单元格有效,所以我不得不在求值之前

如何在Google Sheets自定义公式过滤器中匹配REGEXMATCH公式中的文字问号字符? 我试图在下面省略E列中有“na”或“?”的行,但它会过滤掉所有行。。。我已经尝试过用波浪线以及1、2、3、4和5个反斜杠来避开问号,但都没有成功。非常感谢您的帮助

=not(regexmatch(E:E, "na|?"))

我算出了:在上面的公式中,一个反斜杠就行了。我很困惑,因为我没有得到任何东西,但在阅读关于regexmatch的文章时,我发现它只对文本格式的单元格有效,所以我不得不在求值之前使用“T()”公式修改它,将列E转换为文本。以下内容现在适用于我:

=not(regexmatch(T(E:E), "na|\?"))