COUNTIF 不再接受“[x]”

COUNTIF not accepting "[x]" anymore

我可能做了一些更新,但大约两个月前,我的 OpenOffice (4.1.1) 不再正确读取 ""x]"

我用它代替数据库中的复选框,但突然它开始给我:

=COUNTIF(G2:G589;"[x]")   = 0

尽管我知道有超过 400 个条目具有该字符串。

他们是否以某种方式改变了括号的工作方式?

函数不可能只是溢出,对吧?因为那太荒谬了。


虽然这很好用:

=COUNTIF(G2:G589;"-")

参见:https://wiki.openoffice.org/wiki/Documentation/How_Tos/Calc:_COUNTIF_function

"It can be very important to check the settings on the Tools menu – Options - OpenOffice.org Calc - Calculate dialog: ... If the checkbox is ticked for Enable regular expressions in formulas, the condition will match using regular expressions"。

参见:https://wiki.openoffice.org/wiki/Documentation/How_Tos/Regular_Expressions_in_Calc

是否勾选了复选框?然后=COUNTIF(G2:G589;"\[x]")

在正则表达式中,[ 具有特殊含义。所以看:https://wiki.openoffice.org/wiki/Documentation/How_Tos/Regular_Expressions_in_Writer#Special_characters