INARRAY(D10,ARRAY(sql("FRDemo","select proj_str from dc_tproject_d")))>0
D10是录入项目名称的单元格
proj_id为项目名称字段
我这样写校验公式对吗?
数据库中已有的项目名称,再次填报相同的项目名称,不可以
改成这样
sql("FRDemo","select count(1) from dc_tproject_d where proj_str='"+D10+"'",1,1)=0
校验公式改如下入语句就可以,判断是否小于1
sql("FRDemo","select count(*) from dc_tproject_d where proj_str='"+D10+"'",1,1)<1
sql(
"FRDemo"
,
"select count(*) from dc_tproject_d where proj_str='"
+D10+
"'"
,1,1)<1