以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  怎样判断Tables("A表").Current("第一列")不为“其他”且Tables("A表").Current("二列")不为空这种情况?  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=31632)

--  作者:comnets
--  发布时间:2013/4/18 13:01:00
--  怎样判断Tables("A表").Current("第一列")不为“其他”且Tables("A表").Current("二列")不为空这种情况?
怎样判断Tables("A表").Current("第一列")不为“其他”且Tables("A表").Current("二列")不为空这种情况?
--  作者:jspta
--  发布时间:2013/4/18 13:02:00
--  

if Tables("A表").Current("第一列") <> "其他" and Tables("A表").Current.Isnull("第二列") = false then

 

end if

[此贴子已经被作者于2013-4-18 13:03:06编辑过]

--  作者:comnets
--  发布时间:2013/4/18 13:03:00
--  
非常感谢