以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  求助  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=88359)

--  作者:niu_niu
--  发布时间:2016/8/1 15:25:00
--  求助
If Tables("表A").Current("BB") = " Y " Then
    output.Show("1")
Else
    output.Show("2")
End If        

上述语句,当值为Y时,为什么执行结果为2呢?    


--  作者:大红袍
--  发布时间:2016/8/1 15:26:00
--  

不要有空格,而且你修改单元格值以后,要回车才是确认修改。

 

If Tables("表A").Current("BB") = "Y" Then
    output.Show("1")
Else
    output.Show("2")
End If