Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
在datacolchanged 中设置公式如下:
if e.datacol.name = "身份证号码" then
if e.newvalue isnot nothing then
dim a as string
dim b as datarow
a = e.datarow("身份证号码")
a = a.replace(0,5)
b= datatables("籍贯档案").find("[号码] = a ")
if b isnot nothing then
e.datarow("籍贯") = b("地址")
else return
end if
end if
end if
那里错了
if a > "" then
b= datatables("籍贯档案").find("[号码] = " & a )
end if
解决,谢谢。
为什么find("[号码] = " & a ) 要这样的格式,帮助文件里有归纳什么情况下采用什么格式