以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  检测空白列  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=152949)

--  作者:nxqtxwz
--  发布时间:2020/7/27 9:46:00
--  检测空白列
如何检测哪一列没有填写并提醒填写呢?
--  作者:有点蓝
--  发布时间:2020/7/27 9:59:00
--  
for each c as col in tables("表A").cols
if tables("表A").compute("count(_Identify)",c & " is null") > 0 then
msgbox(c & "列还有没填")
end if
next
[此贴子已经被作者于2020/7/27 9:59:04编辑过]