0

我正在尝试查看是否有一个公式可以检查字符串字段类型中是否使用了某个字符结构,我需要检查它是否匹配,如果不匹配则使用变红。

字母 ALPAH NUM NUM NUM 字母

AA123A - 好的,
A1234A - 变红。

提前致谢。

4

1 回答 1

1

尝试使用这样的东西作为条件格式公式:

local stringvar somefield:={table.string_field};

if len(somefield)=7
    and ascw(somefield[1]) in [65 to 90]
    and ascw(somefield[2]) in [65 to 90] 
    and isnumeric(somefield[3 to 5])
    and ascw(somefield[6]) in [65 to 90] then crBlack else crRed

显然,这仅适用于大写字母字符(ASCII 值 65-90),但可以轻松更改以适应您需要的任何内容。

于 2012-08-03T17:31:40.267 回答